Skip to content

Commit

Permalink
Releasing v1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Apr 4, 2023
1 parent 882edca commit e1c6162
Show file tree
Hide file tree
Showing 6 changed files with 254 additions and 250 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.5.9 (Apr 4, 2023)

* enhancement - keybindings of jupyter notebook. See [#281](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/281)

## 1.5.8 (Apr 2, 2023)

* enhancement - Include the full set of VS Code "format document" commands. See [#288](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/288)
Expand Down
481 changes: 240 additions & 241 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "1.5.8",
"version": "1.5.9",
"publisher": "k--kato",
"engines": {
"vscode": "^1.76.0"
Expand Down Expand Up @@ -236,7 +236,7 @@
"mac": "cmd+alt+l",
"command": "notebook.formatCell",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'",
"intellij": "Reformat code"
"notebook": "To keep Notebook key bindings"
},
{
"key": "ctrl+alt+l",
Expand Down Expand Up @@ -264,7 +264,7 @@
"mac": "cmd+alt+l",
"command": "notebook.format",
"when": "notebookEditable && !editorTextFocus && activeEditor == 'workbench.editor.notebook'",
"intellij": "Reformat code"
"notebook": "To keep Notebook key bindings"
},
{
"key": "ctrl+alt+o",
Expand Down
6 changes: 3 additions & 3 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "1.5.8",
"version": "1.5.9",
"publisher": "k--kato",
"engines": {
"vscode": "^1.76.0"
Expand Down Expand Up @@ -291,7 +291,7 @@
"mac": "cmd+alt+l",
"command": "notebook.formatCell",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'",
"intellij": "Reformat code"
"notebook": "To keep Notebook key bindings"
},
{
"key": "ctrl+alt+l",
Expand Down Expand Up @@ -319,7 +319,7 @@
"mac": "cmd+alt+l",
"command": "notebook.format",
"when": "notebookEditable && !editorTextFocus && activeEditor == 'workbench.editor.notebook'",
"intellij": "Reformat code"
"notebook": "To keep Notebook key bindings"
},
{
"key": "ctrl+alt+o",
Expand Down
3 changes: 2 additions & 1 deletion src/tool/gene-keybind-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const isMacOS = (line) => line.match(/"mac": "(.*)"/) !== null;
const isCommand = (line) => line.match(/"command": "(.*)"/) !== null;
const isWhen = (line) => line.match(/"when": "(.*)"/) !== null;
const isIntelliJ = (line) => line.match(/"intellij": "(.*)"/) !== null;
const isTodo = (line) => line.match(/"todo": "(.*)"/) !== null;
const isTodo = (line) => line.match(/"todo": "(.*)"/) !== null;
const isNotebook = (line) => line.match(/"notebook": "(.*)"/) !== null;

const hasCommand = (cmnd) => cmnd !== null && cmnd !== '';

Expand Down

0 comments on commit e1c6162

Please sign in to comment.