Update shift+enter when clauses.

This commit is contained in:
rebornix 2023-05-11 16:18:04 -07:00
Родитель 962e017bd7
Коммит 0d80d8a3aa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 181FC90D15393C20
2 изменённых файлов: 19 добавлений и 3 удалений

16
package-lock.json сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,16 @@
{
"name": "jupyter-keymap",
"version": "1.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "jupyter-keymap",
"version": "1.1.1",
"license": "MIT",
"engines": {
"vscode": "^1.79.0-insider"
}
}
}
}

Просмотреть файл

@ -12,9 +12,9 @@
},
"displayName": "Jupyter Keymap",
"description": "Jupyter keymaps for notebooks",
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"vscode": "^1.60.0-insider"
"vscode": "^1.79.0-insider"
},
"repository": {
"type": "git",
@ -113,7 +113,7 @@
},
{
"key": "shift+enter",
"when": "editorTextFocus && inputFocus && notebookEditorFocused || notebookCellListFocused && notebookCellType == 'code'",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && !interactiveEditorFocused || notebookCellListFocused && notebookCellType == 'code' && !interactiveEditorFocused",
"command": "notebook.cell.executeAndSelectBelow"
}
]