Skip to content

Commit 551d185

Browse files
committed
Fix +j for OneNote before windows 10
1 parent 054bb6e commit 551d185

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

lib/bind/vim_normal.ahk

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ u::Send,^z
44
^r::Send,^y
55

66
; Combine lines
7-
+j::Send, {Down}{Home}{BS}{Space}{Left}
7+
+j::
8+
if WinActive("ahk_group VimOneNoteGroup"){
9+
Send, ^{Down}{Home}{BS}{Space}{Left}
10+
}else{
11+
Send, {Down}{Home}{BS}{Space}{Left}
12+
}
813

914
; Change case
1015
~::

lib/vim_ahk.ahk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
class VimAhk{
2121
__About(){
22-
this.About.Version := "v0.6.2"
23-
this.About.Date := "13/Apr/2020"
22+
this.About.Version := "v0.6.3"
23+
this.About.Date := "14/Apr/2020"
2424
this.About.Author := "rcmdnk"
2525
this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."
2626
this.About.Homepage := "https://github.com/rcmdnk/vim_ahk"

0 commit comments

Comments
 (0)