diff --git a/core/src/editor_buffer/mod.rs b/core/src/editor_buffer/mod.rs index aa2a89a..c6a0616 100644 --- a/core/src/editor_buffer/mod.rs +++ b/core/src/editor_buffer/mod.rs @@ -27,8 +27,8 @@ pub enum CommandResponse { #[must_use] pub struct CommandResult { success: bool, - response: CommandResponse, - buffer: EditorBuffer, + pub response: CommandResponse, + pub buffer: EditorBuffer, } impl CommandResult {