Closed krassowski closed 1 year ago
I'm finding that whenver I enter an editor I'm entering in insert mode, rather than normal mode (which is what we do for notebooks) is it easy to enter into normal mode for consistency?
one other weird thing, it seems that modifyEditor
gets called every time I hit Esc
when in a fileeditor. Probably not optimal, but also doesn't seem to be a big deal
one other weird thing, it seems that modifyEditor gets called every time I hit Esc when in a fileeditor. Probably not optimal, but also doesn't seem to be a big deal
This is because of the shortcut in schema bound to vim:enter-normal-mode
which is a workaround for search box stealing Esc (in 4.0, once 4.1 is out we should be able to drop it). It should be innocent as the heavy operations in modifyEditor
are guarded.
I'm finding that whenver I enter an editor I'm entering in insert mode, rather than normal mode (which is what we do for notebooks) is it easy to enter into normal mode for consistency?
perfect! Thank you again! I think this would have taken me days of confusion to get something like this going.
Thank you for super quick review and releases!
Relates to https://github.com/jupyterlab/jupyterlab/issues/14599
Code changes
VimEditorManager
out ofVimCellManager
User facing changes