From 995f1657cd1a3a03faee25bd98fd338f4304fde5 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Thu, 27 Nov 2025 21:25:37 -0400 Subject: [PATCH] Make some fields in CommandResponse public --- core/src/editor_buffer/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {