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
The extension introduces a vscode shortcut with the title "Notebook: Focus Previous Cell Editor" and a when condition editorTextFocus && inputFocus && notebookEditorFocused && vim.mode == 'Normal' && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'
Also, I added my own custom mapping for k that I can not use when the condition above is met. I would like to edit this condition so it is not triggered if I pressed the leader key. something along the lines of vim.leaderPending == false or vim.keyPending == false
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The extension introduces a vscode shortcut with the title "Notebook: Focus Previous Cell Editor" and a when condition
editorTextFocus && inputFocus && notebookEditorFocused && vim.mode == 'Normal' && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'
Also, I added my own custom mapping for k that I can not use when the condition above is met. I would like to edit this condition so it is not triggered if I pressed the leader key. something along the lines of
vim.leaderPending == false
orvim.keyPending == false
Is this functionality available?
Beta Was this translation helpful? Give feedback.
All reactions