Make some fields in CommandResponse public

This commit is contained in:
Matthew Gordon 2025-11-27 21:25:37 -04:00
parent 41e9c197cd
commit 995f1657cd
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ pub enum CommandResponse {
#[must_use] #[must_use]
pub struct CommandResult { pub struct CommandResult {
success: bool, success: bool,
response: CommandResponse, pub response: CommandResponse,
buffer: EditorBuffer, pub buffer: EditorBuffer,
} }
impl CommandResult { impl CommandResult {