Skip to content

Commit

Permalink
Merge branch 'vnext' of https://github.com/microsoft/vscode-docs into…
Browse files Browse the repository at this point in the history
… vnext
  • Loading branch information
Kartik Raj committed Jul 28, 2022
2 parents aa10243 + aec6f47 commit 830297c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 7 deletions.
41 changes: 35 additions & 6 deletions build/keybindings/doc.keybindings.win.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@
"when": "editorTextFocus && hasWordHighlights" },
{ "key": "escape", "command": "editor.cancelOperation",
"when": "cancellableOperation" },
{ "key": "ctrl+k ctrl+,", "command": "editor.createFoldingRangeFromSelection",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "escape", "command": "editor.debug.action.closeExceptionWidget",
"when": "exceptionWidgetVisible" },
{ "key": "ctrl+k ctrl+i", "command": "editor.debug.action.showDebugHover",
Expand Down Expand Up @@ -342,6 +344,8 @@
"when": "hasSymbols" },
{ "key": "escape", "command": "editor.gotoNextSymbolFromResult.cancel",
"when": "hasSymbols" },
{ "key": "ctrl+k ctrl+.", "command": "editor.removeManualFoldingRanges",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+l", "command": "editor.toggleFold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+shift+]", "command": "editor.unfold",
Expand Down Expand Up @@ -475,13 +479,17 @@
{ "key": "up", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "shift+tab", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus" },
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "shift+enter", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus" },
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "tab", "command": "acceptSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus" },
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "enter", "command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus" },
"when": "acceptSuggestionOnEnter && suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus" },
{ "key": "shift+escape", "command": "hideCodeActionMenuWidget",
"when": "CodeActionMenuVisible" },
{ "key": "escape", "command": "hideCodeActionMenuWidget",
"when": "CodeActionMenuVisible" },
{ "key": "shift+escape", "command": "hideSuggestWidget",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "hideSuggestWidget",
Expand Down Expand Up @@ -640,6 +648,8 @@
"when": "inKeybindings" },
{ "key": "escape", "command": "list.clear",
"when": "listFocus && listHasSelectionOrFocus && !inputFocus" },
{ "key": "escape", "command": "list.closeFind",
"when": "listFocus && treeFindOpen" },
{ "key": "left", "command": "list.collapse",
"when": "listFocus && treeElementCanCollapse && !inputFocus || listFocus && treeElementHasParent && !inputFocus" },
{ "key": "ctrl+left", "command": "list.collapseAll",
Expand All @@ -650,6 +660,10 @@
"when": "listFocus && listSupportsMultiselect && !inputFocus" },
{ "key": "shift+up", "command": "list.expandSelectionUp",
"when": "listFocus && listSupportsMultiselect && !inputFocus" },
{ "key": "f3", "command": "list.find",
"when": "listFocus" },
{ "key": "ctrl+f", "command": "list.find",
"when": "listFocus" },
{ "key": "down", "command": "list.focusDown",
"when": "listFocus && !inputFocus" },
{ "key": "home", "command": "list.focusFirst",
Expand Down Expand Up @@ -1039,7 +1053,8 @@
{ "key": "ctrl+k ctrl+shift+\\", "command": "workbench.action.splitEditorInGroup",
"when": "activeEditorCanSplitInGroup" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorOrthogonal" },
{ "key": "ctrl+shift+b", "command": "workbench.action.tasks.build" },
{ "key": "ctrl+shift+b", "command": "workbench.action.tasks.build",
"when": "taskCommandsRegistered" },
{ "key": "escape", "command": "workbench.action.terminal.clearSelection",
"when": "terminalFocus && terminalHasBeenCreated && terminalTextSelected && !terminalFindVisible || terminalFocus && terminalProcessSupported && terminalTextSelected && !terminalFindVisible" },
{ "key": "ctrl+shift+c", "command": "workbench.action.terminal.copySelection",
Expand Down Expand Up @@ -1320,5 +1335,19 @@
{ "key": "shift+f4", "command": "references-view.prev",
"when": "reference-list.hasResult && references-view.canNavigate" },
{ "key": "shift+alt+h", "command": "references-view.showCallHierarchy",
"when": "editorHasCallHierarchyProvider" }
"when": "editorHasCallHierarchyProvider" },
{ "key": "ctrl+down", "command": "focusNextCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "down", "command": "focusNextCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "ctrl+up", "command": "focusPreviousCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "up", "command": "focusPreviousCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "shift+tab", "command": "onEnterSelectCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "enter", "command": "onEnterSelectCodeAction",
"when": "CodeActionMenuVisible" },
{ "key": "ctrl+enter", "command": "onEnterSelectCodeActionWithPreview",
"when": "CodeActionMenuVisible" }
]
2 changes: 1 addition & 1 deletion release-notes/v1_70.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ We have created an experimental extension named [WWBD](https://marketplace.visua

#### New Getting started experience

We've polished the Python walkthrough to improve the flow, so users can smoothly transition to installing python if need be and selecting it. Windows Store or appropriate walkthrough tile is opened when Python is not installed, in which users can now auto-run the instructions displayed. Any prompts related to interpreters are now only shown when a user-action is performed which requires it, instead of automatically showing them at start-up leading to a distracting user experience. Also, such prompts are now improved to be more precise about the errors and changes that are needed to be made.
We've polished the Python walkthrough to improve the flow, so users can smoothly transition to installing python if need be and selecting it. Windows Store or appropriate walkthrough tile is opened when Python is not installed, where users can now auto-run the instructions displayed. Any prompts related to interpreters are now only shown when a user-action is performed which requires it, instead of automatically showing them at start-up leading to distracting user experience. Also, such prompts are now improved to be more precise about the errors and changes that are needed to be made.

#### Interpreter information in the status bar

Expand Down

0 comments on commit 830297c

Please sign in to comment.