-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<ctrl+f><ctrl+d><ctrl+a> has no effect on "Insert" mode #1960
Comments
+1 |
this problem is resolve;you can config keybinding.json |
@wYuanHpp can you give an example how to bind ctrl+f to move forward a char in insertmode? |
@reducm here is an example shows how to move cursor in insert mode
|
I believe this is a dupe of #3126. The fix will be included in our next release 1.0.4 |
The VSCodeVim team prioritizes issues based on reaction count.
Is this a BUG REPORT or FEATURE REQUEST? (choose one):
BUG REPORT
Environment:
latest MACOS + latest VSCode + VSCodeVim
What happened:
In "Insert" mode, should be mapped to "CursorRight" which forward cursor one character.
should move cursor to the beginning of the line.
But they have no effect.
I notice that <ctrl+b> does take effect because there is one more condition in "when" than <ctrl+f>.
{ "key": "ctrl+f", "command": "extension.vim_ctrl+f",
"when": "editorTextFocus && vim.active && vim.use && !inDebugRepl" },
{ "key": "ctrl+b", "command": "extension.vim_ctrl+b",
"when": "editorTextFocus && vim.active && vim.use && !inDebugRepl && vim.mode != 'Insert'" },
I think "vim.mode != 'Insert'" should be applied to every "Normal" mode commands, like ^a, ^f, ^e, ^d ...
What did you expect to happen:
How to reproduce it:
The text was updated successfully, but these errors were encountered: