diff --git a/lib/bind/vim_enter_insert.ahk b/lib/bind/vim_enter_insert.ahk index 8d5692ec..25345b9c 100644 --- a/lib/bind/vim_enter_insert.ahk +++ b/lib/bind/vim_enter_insert.ahk @@ -7,9 +7,7 @@ i::Vim.State.SetMode("Insert") Return a:: - if(Vim.CheckChr("`n")){ - Send, {Left} - }else{ + if(! Vim.CheckChr("`n")){ Send, {Right} } Vim.State.SetMode("Insert") diff --git a/lib/vim_ahk.ahk b/lib/vim_ahk.ahk index ddfb08ab..f709c6a5 100644 --- a/lib/vim_ahk.ahk +++ b/lib/vim_ahk.ahk @@ -20,7 +20,7 @@ class VimAhk{ __About(){ - this.About.Version := "v0.11.1" + this.About.Version := "v0.11.2" this.About.Date := "11/Feb/2022" this.About.Author := "rcmdnk" this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."