Open
Description
Applies To
- Notebooks (.ipynb files)
- Interactive Window and/or Cell Scripts (.py files with #%% markers)
What happened?
When using either TextInput or TextAreaInput from bokeh the active cell is sensitive to the written letters and this causes that letters and strings like 'a', 'b' or 'dd' will trigger the shortcut. Turns out that the notebook adds and removes cells, which is confusing.
Using the same code in jupyter lab in a browser works fine, so I think this behavior is is caused on the VSCode side. I can't reproduce this with ipywidgets.
from bokeh.models import TextInput
from bokeh.io import output_notebook, show
output_notebook()
ti = TextInput()
show(ti)
VS Code Version
1.100.2
Jupyter Extension Version
2025.4.0
Jupyter logs
None
Coding Language and Runtime Version
Python 3.12.4
Language Extension Version (if applicable)
No response
Anaconda Version (if applicable)
No response
Running Jupyter locally or remotely?
Local