Skip to content

Commit 98759b8

Browse files
committed
fix a (Left is implemented in CheckChr, not needed at a definition)
1 parent 877003f commit 98759b8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/bind/vim_enter_insert.ahk

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ i::Vim.State.SetMode("Insert")
77
Return
88

99
a::
10-
if(Vim.CheckChr("`n")){
11-
Send, {Left}
12-
}else{
10+
if(! Vim.CheckChr("`n")){
1311
Send, {Right}
1412
}
1513
Vim.State.SetMode("Insert")

lib/vim_ahk.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
class VimAhk{
2222
__About(){
23-
this.About.Version := "v0.11.1"
23+
this.About.Version := "v0.11.2"
2424
this.About.Date := "11/Feb/2022"
2525
this.About.Author := "rcmdnk"
2626
this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."

0 commit comments

Comments
 (0)