You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Create new Python file command
* Rename command
* Format documents
* Add a news entry
* Add telemetry and add experimental setting
* Add tests
* Format document
* Disable eslint class-methods-use-this
* Attempt to fix test
* Add workspace service
* Try to fix test again
* Fix tests and add appShell
* Add title for command
* Add titles to package.nls.json
* Remove accidental launch.json edit
* Apply suggestions from code review
Co-authored-by: Kartik Raj <karraj@microsoft.com>
* Add shorttitle to new file command
* Apply suggestions from code review
Co-authored-by: Kim-Adeline Miguel <51720070+kimadeline@users.noreply.github.com>
Co-authored-by: Kartik Raj <karraj@microsoft.com>
Co-authored-by: Kim-Adeline Miguel <51720070+kimadeline@users.noreply.github.com>
"description": "Enable the `Python: New Python File` command.",
517
+
"scope": "machine",
518
+
"type": "boolean",
519
+
"tags": [
520
+
"experimental"
521
+
]
522
+
},
506
523
"python.defaultInterpreterPath": {
507
524
"default": "python",
508
525
"description": "Path to default Python to use when extension loads up for the first time, no longer used once an interpreter is selected for the workspace. See https://aka.ms/AAfekmf to understand when this is used.",
* Show the given document in a text editor. A {@link ViewColumn column} can be provided
278
+
* to control where the editor is being shown. Might change the {@link window.activeTextEditor active editor}.
279
+
*
280
+
* @param document A text document to be shown.
281
+
* @param column A view column in which the {@link TextEditor editor} should be shown. The default is the {@link ViewColumn.Active active}, other values
282
+
* are adjusted to be `Min(column, columnCount + 1)`, the {@link ViewColumn.Active active}-column is not adjusted. Use {@linkcode ViewColumn.Beside}
283
+
* to open the editor to the side of the currently active one.
284
+
* @param preserveFocus When `true` the editor will not take focus.
285
+
* @return A promise that resolves to an {@link TextEditor editor}.
0 commit comments