-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeybindings.json
More file actions
37 lines (37 loc) · 1.16 KB
/
Copy pathkeybindings.json
File metadata and controls
37 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// CopilotAtelier keybindings — merged idempotently into %APPDATA%\Code\User\keybindings.json
// by Setup-CopilotSettings.ps1. Match key = (key, command, when).
[
{
"key": "ctrl+k x",
"command": "PowerShell.RestartSession"
},
{
"key": "ctrl+k n",
"command": "workbench.action.terminal.moveIntoNewWindow",
"when": "terminalHasBeenCreated && terminalIsOpen || terminalIsOpen && terminalProcessSupported"
},
{
"key": "ctrl+k k",
"command": "workbench.action.chat.openInNewWindow",
"when": "chatIsEnabled"
},
{
"key": "enter",
"command": "-workbench.action.chat.submit",
"when": "inChatInput && chatCursorAtTop && !chatIsEditing && !suggestWidgetVisible"
},
{
"key": "enter",
"command": "-workbench.action.chat.submit",
"when": "inChatInput && !chatIsEditing && !suggestWidgetVisible"
},
{
"key": "enter",
"command": "-workbench.action.chat.submit"
},
{
"key": "ctrl+enter",
"command": "workbench.action.chat.submit",
"when": "inChatInput && !chatIsEditing && !suggestWidgetVisible"
}
]