VS Code version: 1.22.1
Jupyter Extension version: 1.1.4
OS and version: Win10
Logs
N/A
Output from Console window (Help->Developer Tools menu)
N/A
Actual behavior
Docs say: "Defining startup code for the jupyter kernel
The default startup code for Python is %matplotlib inline.".
What other options are supported? I tried e.g. %%timeit (to check execution times) or %xmode Plain, or e.g. import pandas as pd and then some pandas global settings.
Expected behavior
Update the docs to give a couple more examples what other options are available from here apart from %matplotlib inline
Steps to reproduce:
"jupyter.languages": [
{
"languageId": "python",
"startupCode": [
"%matplotlib inline",
"%xmode Plain" // e.g. should this be supported?
],
...
Environment data
VS Code version: 1.22.1 Jupyter Extension version: 1.1.4 OS and version: Win10
Logs
N/A Output from
Console window
(Help->Developer Tools menu) N/AActual behavior
Docs say: "Defining startup code for the jupyter kernel The default startup code for Python is %matplotlib inline.".
What other options are supported? I tried e.g. %%timeit (to check execution times) or %xmode Plain, or e.g. import pandas as pd and then some pandas global settings.
Expected behavior
Update the docs to give a couple more examples what other options are available from here apart from %matplotlib inline
Steps to reproduce:
...