We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Nj
Nk
N
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
What happened: cursor blinking before move to target line when use Nj or Nk, and seems like slow
What did you expect to happen: should target to N line down/up when Nj or Nk directly without blinking cursor
How to reproduce it (as minimally and precisely as possible):
text
10j
20k
screenshot:
Environment:
vscode configuration relative to vscodevim:
/* Vim */ "vim.enableNeovim": true, "vim.neovimPath": "/usr/local/bin/nvim", "vim.easymotion": true, "vim.incsearch": true, "vim.useSystemClipboard": false, "vim.useCtrlKeys": true, "vim.hlsearch": true, "vim.overrideCopy": false, "vim.foldfix": true, "editor.lineNumbers": "relative", "vim.insertModeKeyBindings": [ { "before": [ "j", "j" ], "after": [ "<Esc>" ] } ], "vim.otherModesKeyBindingsNonRecursive": [ { "before": [ "u" ], "after": [], "commands": [ { "command": "undo", "args": [] } ] }, { "before": [ "<C-r>" ], "after": [], "commands": [ { "command": "redo", "args": [] } ] }, { "before": [ "<leader>", "e", "n" ], "commands": [ { "command": "editor.action.marker.next" } ] }, { "before": [ "<leader>", "e", "p" ], "commands": [ { "command": "editor.action.marker.prev" } ] }, { // not working "before": [ "<leader>", "e", "c" ], "commands": [ { "command": "closeMarkersNavigation" } ] } ], "vim.leader": "<space>", "vim.handleKeys": { "<C-a>": false, "<C-f>": true, "<C-n>": false },
The text was updated successfully, but these errors were encountered:
I noticed this behaviour as well, and disabling vim.foldFix seems to resolve it.
vim.foldFix
(Running version 0.11.2 on VSCode 1.21.1, on macOS 10.13.3 too. It looks like this is the same issue as #2163?)
Sorry, something went wrong.
thanks @jcheng31 , that fixed it for me.
was wondering why it started happening after an upgrade
No branches or pull requests
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
What happened: cursor blinking before move to target line when use
Nj
orNk
, and seems like slowWhat did you expect to happen: should target to N line down/up when
Nj
orNk
directly without blinking cursorHow to reproduce it (as minimally and precisely as possible):
text
(try to make test simple without affected by other plugins)10j
,20k
, you will find the biggerN
, blinking will take more time.screenshot:
Environment:
vscode configuration relative to vscodevim:
The text was updated successfully, but these errors were encountered: