jupyterlab-contrib/spellchecker

Where can we see the spellchecker suggestions?

paugier opened this issue · 5 comments

Spellchecker suggestions are available from the context menu.

I guess I'm just silly but I can't find how to get the suggestions!

I tried to right-click on a wrong word but there is nothing on spelling suggestions in the context menu.

What version of the JupyterLab and of the extension do you use? You can check this with:

jupyter lab --version

and

jupyter labextension list

respectively

$ jupyter lab --version                                                  
2.1.1
$ jupyter labextension list                                              
JupyterLab v2.1.1
Known labextensions:
   app dir: /home/pierre/.pyenv/versions/3.8.2/share/jupyter/lab
        @ijmbarr/jupyterlab_spellchecker v0.1.6  enabled  OK
        @jupyter-widgets/jupyterlab-manager v2.0.0  enabled  OK
        jupyter-leaflet v0.13.2  enabled  OK
        jupyter-matplotlib v0.7.4  enabled  OK

You will need JupyterLab 2.2.2 to install the newest version of the extension right now (and >=2.2.2 once #35 gets merged and a new version is released). Upgrade your JupyterLab to 2.2.2 with:

pip install jupyterlab=2.2.2
# or conda equivalent - whichever you used to install it in the first place

Then upgrade the extension with:

jupyter labextension install @ijmbarr/jupyterlab_spellchecker@0.1.9

Ah great!! I confirm that it is now fixed!

Sorry for this bad issue and thanks for this very useful extension!