Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorMartin Aeschlimann <martinae@microsoft.com>2022-07-27 21:53:49 +0300
committerGitHub <noreply@github.com>2022-07-27 21:53:49 +0300
commit59afa0a8ee51352e7d1a26bfe1d6abf17d22b1dd (patch)
tree429e0a804a057efec05a67208a6325ab1fd0a360 /src/vs
parent9db76b0b15ac879d6bf6de68fb94c8ebf6331bc8 (diff)
Create and remove manual folding range use the same shortcut. (#156490)
Create and remove manual folding range use the same shortcut. Fixes #156489
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/editor/contrib/folding/browser/folding.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/editor/contrib/folding/browser/folding.ts b/src/vs/editor/contrib/folding/browser/folding.ts
index 279ab870eb5..6744508970d 100644
--- a/src/vs/editor/contrib/folding/browser/folding.ts
+++ b/src/vs/editor/contrib/folding/browser/folding.ts
@@ -1076,7 +1076,7 @@ class FoldRangeFromSelectionAction extends FoldingAction<void> {
precondition: CONTEXT_FOLDING_ENABLED,
kbOpts: {
kbExpr: EditorContextKeys.editorTextFocus,
- primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyMod.CtrlCmd | KeyCode.Period),
+ primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyMod.CtrlCmd | KeyCode.Comma),
weight: KeybindingWeight.EditorContrib
}
});