You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,6 @@ All of these can be changed from the setting menu, too.
135
135
|VimSendCtrlBracketNormal|If 1, short press Ctrl-[ send Ctrl-[ in the normal mode.|0|
136
136
|VimLongCtrlBracketNormal|If 1, short press and long press of Ctrl-[ behaviors are swapped.|0|
137
137
|VimChangeCaretWidth|If 1, check the character under the cursor before an action. Currently this is used for: `a` in the normal mode (check if the cursor is located at the end of the line).|0|
138
-
|VimCheckChr|If 1, |0|
139
138
|VimRestoreIME|If 1, IME status is restored at entering the insert mode.|1|
140
139
|VimJJ|If 1, `jj` changes the mode to the normal mode from the insert mode.|0|
141
140
|VimTwoLetterEsc|A list of character pairs to press together during the insert mode to get to the Normal mode.<br>For example, a value of `jf` means pressing `j` and `f` at the same time will enter the Normal mode.<br>Multiple combination can be set by separated by `,`. (e.g. `jf,jk,sd`)||
Copy file name to clipboardExpand all lines: lib/vim_ahk.ahk
+1-7Lines changed: 1 addition & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -108,9 +108,6 @@ class VimAhk{
108
108
this.AddToConf("VimChangeCaretWidth", 0, 0
109
109
, "Change to thick text caret when in normal mode"
110
110
, "When entering normal mode, sets the text cursor/caret to a thick bar, then sets back to thin when exiting normal mode.`nDoesn't work with all windows, and causes the current window to briefly lose focus when changing mode.")
111
-
this.AddToConf("VimCheckChr", 0, 0
112
-
, "Check the character before an action"
113
-
, "Check the character under the cursor before an action.`nCurrently, this is used for: 'a' in the normal mode (check if the cursor is located the end of the line).")
114
111
this.AddToConf("VimRestoreIME", 1, 1
115
112
, "Restore IME status at entering the insert mode"
116
113
, "Save the IME status in the insert mode, and restore it at entering the insert mode.")
@@ -142,7 +139,7 @@ class VimAhk{
142
139
, "Application"
143
140
, "Set one application per line.`n`nIt can be any of Window Title, Class or Process.`nYou can check these values by Window Spy (in the right click menu of tray icon).")
0 commit comments