-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Implement the changes necessary to use the new custom editor #12188
Changes from 22 commits
bb5e0ad
66ea1dd
d27e2f6
08c0760
e49e9ad
d167a10
0f48e1e
d92a98b
cc921af
c3a470c
ed58c18
80b881f
d101156
6b3d3b6
2922e7c
384e38c
a6a9479
a115152
7861c7d
4715a36
b48c8d9
23329a6
496b8be
615caf5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"activationEvents": [ | ||
"onCustomEditor:ms-python.python.notebook.ipynb" | ||
], | ||
"contributes": { | ||
"customEditors": [ | ||
{ | ||
"viewType": "ms-python.python.notebook.ipynb", | ||
"displayName": "Jupyter Notebook", | ||
"selector": [ | ||
{ | ||
"filenamePattern": "*.ipynb" | ||
} | ||
], | ||
"priority": "default" | ||
} | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"python.pythonPath": "/usr/bin/python3" | ||
"python.pythonPath": "C:\\Users\\rchiodo.REDMOND\\AppData\\Local\\Continuum\\miniconda3\\envs\\jupyter\\python.exe" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might want to revert There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will do. |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Enable the use of the custom editor for native notebooks. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually this was on purpose. Otherwise experiments won't load from the json file.