From d1492a10cdaf714074d29ad3366ab9c169d95b75 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Fri, 2 Aug 2024 15:51:45 +0200 Subject: add bartheme and barstate to sheetview --- src/state/view/mode.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/state/view/mode.rs') diff --git a/src/state/view/mode.rs b/src/state/view/mode.rs index 3fa9c63..63e6e5b 100644 --- a/src/state/view/mode.rs +++ b/src/state/view/mode.rs @@ -18,15 +18,15 @@ impl<'lua> FromLua<'lua> for Mode { match value.as_str().unwrap().to_lowercase().as_ref() { "normal" => Ok(Mode::Normal), "visual" => Ok(Mode::Visual), - "insert" => Ok(Mode::Visual), - "command" => Ok(Mode::Visual), + "insert" => Ok(Mode::Insert), + "command" => Ok(Mode::Command), _ => Err(mlua::Error::runtime( - "mode needs to be 'normal', 'visual' or 'insert'", + "mode needs to be 'normal', 'visual', 'insert' or 'command'", )), } } else { Err(mlua::Error::runtime( - "mode needs to be 'normal', 'visual' or 'insert'", + "mode needs to be 'normal', 'visual' 'insert', or 'command'", )) } } @@ -39,8 +39,8 @@ impl<'lua> IntoLua<'lua> for Mode { ) -> mlua::prelude::LuaResult> { match self { Mode::Normal => "normal", - Mode::Visual => "insert", - Mode::Insert => "visual", + Mode::Visual => "visual", + Mode::Insert => "insert", Mode::Command => "command", } .into_lua(lua) -- cgit v1.2.3-70-g09d2