-
Notifications
You must be signed in to change notification settings - Fork 33
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
Error decorations persist in jupyter notebooks (ipynb) after resolution #223
Comments
Having the same issue here. There should be a mechanism to update the error decoration after running code. |
Added command to force update decorations. Example to run from {
"key": "ctrl+shift+5",
"command": "runCommands",
"args": {
"commands": [
"notebook.execute",
"errorLens.updateEverything",
],
},
}, |
Same issue here. The last highlight still appears even after it's resolved until the Reload Window command. The Update Everything command does not work for me @usernamehw |
Is that command not working at all? Maybe {
"key": "ctrl+shift+5",
"command": "commands.run",
"args": [
{
"command": "notebook.execute",
},
{
"delay": 2000,
"command": "errorLens.updateEverything",
},
],
}, |
When the errors origin lies in a different code cell after resolution the decoration still persists:
Reproducing:
create a new jupyter notebook
create a new code cell containing
mymessage = "something very interesting"
Create s econd code cell containing
print(mymessages)
Correct the second cells value to:
print(mymessage)
Run the second cell. the code runs successfully, but the error decoration persists
The text was updated successfully, but these errors were encountered: