Λlisue
Λlisue
Then how about a bit modification of https://github.com/lambdalisue/jupyter-vim-binding/wiki/Customization#run-cell-scrolls-the-cell-to-top-scroll-output-into-view ```javascript // Run and select next cell Jupyter.keyboard_manager.actions.register({ 'help': 'run selected cells', 'handler': function(env, event) { env.notebook.command_mode(); var actions = Jupyter.keyboard_manager.actions; actions.call('jupyter-notebook:run-cell',...
The version of jupyter seems a bit old. Could you try the latest one?
> "Command" mode is a standard pseudonym for vim's "normal" mode > Whatever the resolution is, I would not simply call either thing "command" mode. It's confusing in either direction....
Thanks for feedback. Yeah Jupyter, Normal, Insert sounds nice. But I'm afraid that the categories in help page are labeld "Command mode" and "Edit mode"... Now I'm feeling that I...
Make a new issue if you would like to talk about different topic please.
Memo: Overriding https://github.com/jupyter/notebook/blob/master/notebook/static/notebook/js/quickhelp.js#L166-L263 will help
Implemented. https://github.com/lambdalisue/jupyter-vim-binding/blob/develop/lib/jupyter/quickhelp.js Could someone kindly check it?
Because of https://github.com/lambdalisue/jupyter-vim-binding/issues/89, I'm not going to investigate this sorry but I'll keep it open for others.
`vi(` `vi[` `vi{` `vi"` doesn't work? [vim-surround](https://github.com/tpope/vim-surround) is not an official Vim feature so I'm not feel comfortable to adding this to jupyter-vim-binding. Maybe you can make a jupyter-vim-binding-surround or...
> What I was hoping for is something where I can select a piece of code and surround it by brackets. Or am I missing something? Sorry I thought you...