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
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,8 @@ All of these can be changed from the setting menu, too.
134
134
|VimCtrlBracketNormal|If 1, pushing Ctrl-[ sets the normal mode, while long press Ctrl-[ sends Ctrl-[.|1|
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
-
|VimChangeCaretWidth|If 1, when entering normal mode, sets the text cursor/caret to a thick bar, then sets back to thin when exiting normal mode.|0|
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|
138
139
|VimRestoreIME|If 1, IME status is restored at entering the insert mode.|1|
139
140
|VimJJ|If 1, `jj` changes the mode to the normal mode from the insert mode.|0|
140
141
|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`)||
, "Change to thick text caret when in normal mode"
109
109
, "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.")
110
+
this.AddToConf("VimCheckChr", 0, 0
111
+
, "Check the character before an action"
112
+
, "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).")
110
113
this.AddToConf("VimRestoreIME", 1, 1
111
114
, "Restore IME status at entering the insert mode"
112
115
, "Save the IME status in the insert mode, and restore it at entering the insert mode.")
@@ -138,7 +141,7 @@ class VimAhk{
138
141
, "Application"
139
142
, "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