Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--enable-proposed-api"
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
* Python (temporary, see `Roadmap`)

# Getting Started
* Please install VS Code Insiders (stable is not yet supported)
* Install this extension
* Launch VS Code with the following command line `code-insiders --enable-proposed-api=donjayamanne.vscode-jupytext`
* Right click a file and select `Open as a Jupyter Notebook`
* This extension requires VS Code 1.60.1 or newer
* Right click a `*.py` file and select `Open as a Jupyter Notebook`
* Start executing code against Jupyter Kernels, save changes to notebook will result in the corresponding script file getting updated.


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"description": "Open, edit and execute plain script files (Python, R, Julia, TypeScript, C#, etc) as Jupyter Notebooks",
"publisher": "donjayamanne",
"version": "0.1.0",
"enableProposedApi": true,
"enableProposedApi": false,
"preview": true,
"engines": {
"vscode": "1.57.0-insider"
"vscode": "^1.60.1"
},
"license": "BSD-3-Clause",
"icon": "icon.png",
Expand Down
Loading