Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/views/results/contributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@
"mac": "cmd+r",
"when": "editorLangId == sql && resourceExtname != .inb"
},
{
"command": "vscode-db2i.runEditorStatement.multiple.all",
"key": "ctrl+a",
"mac": "cmd+a",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We absolutely cannot use Control/Command + A as the keybinding. This is 'select all' in most everything.

You can use the combo of Control/Command + A + R as originally suggested. See how we do it elsewhere in this file.

"when": "editorLangId == sql && resourceExtname != .inb"
},
{
"command": "vscode-db2i.runEditorStatement.inView",
"key": "ctrl+alt+r",
Expand Down