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]
pub struct CommandResult {
success: bool,
response: CommandResponse,
buffer: EditorBuffer,
pub response: CommandResponse,
pub buffer: EditorBuffer,
}
impl CommandResult {