We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054bb6e commit 551d185Copy full SHA for 551d185
lib/bind/vim_normal.ahk
@@ -4,7 +4,12 @@ u::Send,^z
4
^r::Send,^y
5
6
; Combine lines
7
-+j::Send, {Down}{Home}{BS}{Space}{Left}
++j::
8
+ if WinActive("ahk_group VimOneNoteGroup"){
9
+ Send, ^{Down}{Home}{BS}{Space}{Left}
10
+ }else{
11
+ Send, {Down}{Home}{BS}{Space}{Left}
12
+ }
13
14
; Change case
15
~::
lib/vim_ahk.ahk
@@ -19,8 +19,8 @@
19
20
class VimAhk{
21
__About(){
22
- this.About.Version := "v0.6.2"
23
- this.About.Date := "13/Apr/2020"
+ this.About.Version := "v0.6.3"
+ this.About.Date := "14/Apr/2020"
24
this.About.Author := "rcmdnk"
25
this.About.Description := "Vim emulation with AutoHotkey, everywhere in Windows."
26
this.About.Homepage := "https://github.com/rcmdnk/vim_ahk"
0 commit comments