Ian Hunt-Isaak
Ian Hunt-Isaak
oh wacky. This is because the `moveByCellOrLines` https://github.com/axelfahy/jupyterlab-vim/blob/c4e43f940ef4be4c961608b6192412d2f3a33d1f/src/index.ts#L85 https://github.com/axelfahy/jupyterlab-vim/blob/c4e43f940ef4be4c961608b6192412d2f3a33d1f/src/index.ts#L127-L133 doesn't check if you're in a notebook so these notebook cell switching commands get run. This means you can also get...
I believe this is fixed by #105
wait maybe not - I think i was confused. WIll re-open until i can properly check.
I think we talked about this on the jupyterlab issue https://github.com/jupyterlab/jupyterlab/issues/8436 but for any future finders of this issue I too ran into this and have made an extension that...
I noticed this too. In general I think there is more success when using one of the nodejs LTS releases (e.g. 14 or 16). When releasing we always use one...
If this gets implemented there should be an equivalent `Z, B` for moving it to the bottom. --- This will require adding a new command similar to https://github.com/axelfahy/jupyterlab-vim/blob/bbb7569c465e3b635f08fb4df12e05de350364dc/src/index.ts#L429-L440
This would require a settings file so xref https://github.com/axelfahy/jupyterlab-vim/issues/24
This can actually be done separately from this extension as this is a jupyterlab setting, so you can change it in `Settings > Advanced Settings Editor > Shortcuts`
I wonder if this is actually an issue in jupyterlab (or perhaps intended behavior). We rely on the Notebook function `selectAbove` to do this https://github.com/jupyterlab-contrib/jupyterlab-vim/blob/3f1315b6b864ab7a887055bce09f07187ab4a3f3/src/index.ts#L386 So unless there is some...
Interestingly the jupyterlab api seems to be a no-op if the first cell is selected, so I'm not sure why it is in fact doing things :thinking: https://github.com/jupyterlab/jupyterlab/blob/8dad476d9285e751607d0b4f59a3d5b18071dcc2/packages/notebook/src/actions.tsx#L769-L775