Skip to content

Commit 70ab001

Browse files
committed
fix; keybinding
1 parent 3251c8c commit 70ab001

1 file changed

Lines changed: 15 additions & 22 deletions

File tree

.vscode/keybindings.json

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,39 @@
11
// Place your key bindings in this file to override the defaults
22
[
3-
{
4-
"key": "cmd+y",
5-
"command": "redo",
6-
"when": "textInputFocus && !editorReadonly"
7-
},
8-
{
9-
"key": "shift+cmd+z",
10-
"command": "-redo",
11-
"when": "textInputFocus && !editorReadonly"
12-
},
3+
// Source Controlビューへフォーカス移動
134
{
145
"key": "shift+alt+g",
15-
"command": "workbench.scm.focus"
6+
"command": "workbench.scm.focus",
167
},
8+
// Cursor拡張: AIでコミットメッセージを生成
179
{
1810
"key": "ctrl+cmd+g",
19-
"command": "cursor.generateGitCommitMessage"
11+
"command": "cursor.generateGitCommitMessage",
2012
},
13+
// Git: 変更を一括ステージ
2114
{
2215
"key": "ctrl+cmd+s",
23-
"command": "git.stageAll"
16+
"command": "git.stageAll",
2417
},
18+
// Cursor: Unified Sidebarの表示切り替え
2519
{
2620
"key": "alt+cmd+s",
2721
"command": "workbench.action.toggleUnifiedSidebarFromKeyboard",
28-
"when": "cursor.agentIdeUnification.enabled == true && !isAuxiliaryWindowFocusedContext"
22+
"when": "cursor.agentIdeUnification.enabled == true && !isAuxiliaryWindowFocusedContext",
2923
},
24+
// ワークスペース全体のシンボル検索(Go to Symbol in Workspace)
3025
{
3126
"key": "shift+cmd+o",
32-
"command": "workbench.action.showAllSymbols"
27+
"command": "workbench.action.showAllSymbols",
3328
},
29+
// 既定のCmd+T(Go to Symbol in Workspace)を解除して別用途に再割り当て
3430
{
3531
"key": "cmd+t",
36-
"command": "-workbench.action.showAllSymbols"
37-
},
38-
{
39-
"key": "cmd+shift+o",
40-
"command": "-workbench.action.gotoSymbol"
32+
"command": "-workbench.action.showAllSymbols",
4133
},
34+
// 現在フォーカス中のエディターグループにTerminal Editorタブを新規追加
4235
{
4336
"key": "cmd+t",
44-
"command": "workbench.action.createTerminalEditorSameGroup"
45-
}
37+
"command": "workbench.action.createTerminalEditorSameGroup",
38+
},
4639
]

0 commit comments

Comments
 (0)