-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
shift-enter not proceeding to next cell #15227
Comments
+1 I see it too. It does not happen too often but when it does it is annoying. It would be useful to create a small reliably reproducible example. Could you see if you can create something that we could copy-paste and use for testing? Thank you for opening this issue! |
hi there, i.e. from ipywidgets import ToggleButton
ToggleButton() in another it doesn't. I'm not sure what triggers the bad behaviour to start happening... |
I was able to determine at least one cause of failure. When jupyterlab-lsp is enabled it can dispatch updates (linting/highlights) to the editor depending on server responses. If the reply arrives immediately after the active cell was changed, but before the editor deactivation change propagated to CodeMirror editor, CodeMirror6 update will trigger a "focus in" event on the old cell leading to change of active cell via Another mode of failure could be related to search function doing something with focus. I guess you could try temporarily disabling jupyterlab-lsp to see if it helps. |
disabling jupyterlab-lsp definitely helped. But that's sad, i need my IDE tools working... |
@michaelaye feel welcome to contribute to your IDE tools ;) I opened jupyter-lsp/jupyterlab-lsp#1026 on the LSP side. |
maybe linked:
#14513
Description
the gif shows that when pressing shift-enter the notebook doesn't proceed to the next cell
and then in the end it does... ! (inconsistent behaviour)
Expected behavior
shift-enter always proceeds to the next cell
Context
The text was updated successfully, but these errors were encountered: