Skip to content

Commit 9b3803a

Browse files
authored
Add binding for cell selection (microsoft#13417)
> @greazer it's actually more appropriate to mark the 4 of us as 'reviewer's instead of assignees. You should be the assignee as you're going to submit this PR. Whoops, I just wasn't paying attention.
1 parent a70b614 commit 9b3803a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,16 @@
289289
"command": "python.datascience.gotoPrevCellInFile",
290290
"key": "ctrl+alt+[",
291291
"when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused"
292+
},
293+
{
294+
"command": "python.datascience.selectCellContents",
295+
"key": "ctrl+alt+\\",
296+
"when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused"
297+
},
298+
{
299+
"command": "python.datascience.selectCell",
300+
"key": "ctrl+alt+shift+\\",
301+
"when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused"
292302
}
293303
],
294304
"commands": [

0 commit comments

Comments
 (0)