Skip to content

NOT TO BE MERGED Ds custom editor squashed (#1543) #10299

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

Closed
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
8 changes: 5 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
"--extensionDevelopmentPath=${workspaceFolder}",
"--enable-proposed-api",
"ms-python.python"
],
"stopOnEntry": false,
"smartStep": true,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*"
],
"preLaunchTask": "Compile",
// "preLaunchTask": "Compile",
"skipFiles": [
"<node_internals>/**"
]
],
},
{
"name": "Extension inside container",
Expand Down
2 changes: 1 addition & 1 deletion build/webpack/webpack.datascience-ui.config.builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function buildConfiguration(isNotebook) {
chunkFilename: `[name].bundle.js`
},
mode: 'development', // Leave as is, we'll need to see stack traces when there are errors.
devtool: 'source-map',
devtool: isProdBuild ? 'source-map' : 'inline-source-map',
optimization: {
minimize: isProdBuild,
minimizer: isProdBuild ? [new TerserPlugin({ sourceMap: true })] : [],
Expand Down
2 changes: 0 additions & 2 deletions experiments.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

[
{
"name": "AlwaysDisplayTestExplorer - experiment",
Expand Down Expand Up @@ -115,4 +114,3 @@
"max": 100
}
]

206 changes: 169 additions & 37 deletions gulpfile.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions news/1 Enhancements/9255.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Implement VS code's custom editor for opening notebooks.
1 change: 1 addition & 0 deletions news/1 Enhancements/9821.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add undo/redo support to notebooks.
1 change: 1 addition & 0 deletions news/2 Fixes/10250.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ensure to correctly return env variables of the activated interpreter, when dealing with non-workspace interpreters.
Loading