Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1469f28

Browse files
authored
Merge pull request DonJayamanne#423 from gandhis1/master
Fixed the Jupyter Run Selection keyboard shortcut, fixed typo in readme
2 parents 7626d52 + fd653f4 commit 1469f28

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ For further information and details continue through to the [documentation](http
101101

102102
### Current Version 0.5.0
103103
* Remove dependency on zmq when using Jupyter or IPython (pure python solution)
104-
* Added a default keybinding for ```Jupyter:Run Selectiong/Line``` of ```ctrl+alt+enter```
104+
* Added a default keybinding for ```Jupyter:Run Selection/Line``` of ```ctrl+alt+enter```
105105
* Changes to update settings.json with path to python using [native API](https://github.com/DonJayamanne/pythonVSCode/commit/bce22a2b4af87eaf40669c6360eff3675280cdad)
106106
* Changes to use [native API](https://github.com/DonJayamanne/pythonVSCode/commit/bce22a2b4af87eaf40669c6360eff3675280cdad) for formatting when saving documents
107107
* Reusing existing terminal instead of creating new terminals

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
"keybindings": [
6060
{
6161
"command": "jupyter.runSelectionLine",
62-
"key": "ctrl+alt+enter"
62+
"key": "ctrl+alt+enter",
63+
"when": "editorFocus && !replaceActive && !searchViewletVisible && !findWidgetVisible"
6364
}
6465
],
6566
"commands": [

0 commit comments

Comments
 (0)