Reputation: 353
I am following a course on Python and Math. As editor I use Jupyter notebooks in VS Code.
I am not able to eliminate (or hide) the time of execution shown in each cell. I searched in Settings, but did not find the relative option.
Could you help, please?
Thanks.
Upvotes: 7
Views: 3166
Reputation: 101
This now exists in VS Code's 'clickable' settings screen (as opposed to editing the settings.json file.
Search settings for the below, and select 'hidden' from the dropdown.
notebook.showCellStatusBar
Upvotes: 10
Reputation: 161
Just put this parameter in the settings.json:
"notebook.showCellStatusBar": "hidden"
Upvotes: 4
Reputation: 1
I have the same question. I only found this enhancement issue on github. It does seem like they did not think of a option to disable it.
For now just switch back to normal Jupyter notebooks.
Upvotes: 0