-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
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
Updates for Jupyterlab 4 #68
Comments
I understand from |
By the way, it seems like this upcoming JLab PR might also have a significant impact on the upgrade? jupyterlab/jupyterlab#12554 |
thanks @firai! I left a comment on that PR asking about this.
We may need to open an issue on jlab to discuss this. Probably better to do so sooner rather than later if we are going to need changes in jlab. Unfortunately I don't think I'll have the bandwidth to think about this for the next few weeks - so if anyone wants to take the lead on pushing on this please do :) |
Thanks @ianhi! Is it worth mentioning in your comment on the JLab windowing PR that the |
yup definitely worthwhile. I think we ought to compile a starting list of what APIs we need that don't exist in the new API an open an issue about that. |
It seems like JLab 4 has now hit RC status. The extension migration guide is at https://jupyterlab.readthedocs.io/en/latest/extension/extension_migration.html. |
I tried running the script but the extension still does not work in Jupyterlab 4. |
I think that that script is necessary but not sufficient. The source of the vim bindings will also need ot be updated as they no longer ship with codemirror. We will now need to get them via: https://github.com/replit/codemirror-vim#vim-keybindings-for-cm6 Finally we will likely also have to change how we interact with jupyterlab codemirror as it seems that that interface has also changed. |
As an avid user of the JupyterLab-Vim extension, I'm eager to contribute to its updates. Can you provide an overview of the current plan? I may be relatively new to developing JupyterLab extensions, but I've familiarized myself with the documentation. It seems we might need to reconfigure the Vim bindings to accommodate the Replit version of the CodeMirror interface. Please let me know how I can assist in this process. |
Hello, I'm an avid user of JupyterLab-Vim too and first I thank you for your work. For now I'm using JupyterLab version 3.6.x, but it should be great to have it working on 4.x.x. If I can assist I'll be pleased let me know. Just few words of encouragement. |
Also just chiming in to say thanks to everyone who has worked / is working on this project - I can barely function without it! Is there some place I can donate? Or if I can provide some other sort of support, please let me know. |
I got to the point that I have tried VSCode for running Jupyter notebooks. It's been a good experience so far. Easy to get vim bindings and black working in code cells. |
A PR adding support for JupyterLab 4.0 is up: #85 - please help with testing and review. |
#85 has been merged and released! Install
ThanksHuge thanks to @krassowski for doing the work on converting the extension! |
I'm back with JupyterLab. After a short spell of using VSS code. |
EDIT - How to get working jlab4
Version
0.17.0
and up should work in jlab4 please upgrade viapython -m pip install jupyterlab_vim --upgrade
I looks as thought jupyterlab 4 will use codemirror 6: jupyterlab/jupyterlab#11638 which drops the built in vim.
Fortunately it looks like replit has taken over maintenance of the vim extension and has updated it for CM6: https://github.com/replit/codemirror-vim#vim-keybindings-for-cm6. We should try to implement using this new package well before release to see if any changes in jlab will be necessary for this extension to continue to work.
The text was updated successfully, but these errors were encountered: