diff --git a/History.md b/History.md index e46f6f3..d23a0e7 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,9 @@ # History +## 0.10.2 / 2019-06-24 + + * `ctrl [` exits Vim insert mode + ## 0.10.1 / 2018-11-21 * `ctrl i` enters Vim insert mode from Jupyter command mode (#71) Thanks @wmayner diff --git a/README.md b/README.md index 9c23815..cc2cca3 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ Shortcuts this extension introduces: | Command/Ctrl-2 | Markdown Cell Mode | | Command/Ctrl-3 | Raw Cell Mode | | Shift-Escape | Leave Vim Mode | +| Escape, Ctrl-\[ | Exit Vim Insert Mode | ### Jupyter command bindings diff --git a/package.json b/package.json index 884f16d..a7fb282 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab_vim", - "version": "0.10.1", + "version": "0.10.2", "description": "Code cell vim bindings", "author": "Jacques Kvam", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 53a8dff..8294e1f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -459,6 +459,11 @@ function activateCellVim(app: JupyterLab, tracker: INotebookTracker): Promise