Skip to content

Commit

Permalink
Map to new shortcuts for new features in vscode insiders #50
Browse files Browse the repository at this point in the history
  • Loading branch information
k--kato committed Dec 15, 2016
1 parent b13897f commit 33213ae
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 27 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.2.7 (December 14, 2016)

* enhancement - Map to new shortcuts for new features in vscode insiders. See [#50](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/50).
* bug fix - Update package.json with a compatible engine. See [#51](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/51).
* bug fix - Installing from VS Code Marketplace installs version 0.1.1 instead of latest (0.2.6). See [#53](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/53).

## 0.2.6 (December 6, 2016)

* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ctrl+v | cmd+v | Paste from clipboard | ✅
ctrl+shift+v | cmd+shift+v | Paste from recent buffers... | N/A
ctrl+d | cmd+d | Duplicate current line or selected block | ✅
ctrl+y | cmd+backspace | Delete line at caret | ✅
ctrl+shift+j | ctrl+shift+j | Smart line join | N/A
ctrl+shift+j | ctrl+shift+j | Smart line join |
ctrl+enter | cmd+enter | Smart line split | ✅
shift+enter | shift+enter | Start new line | ✅
ctrl+shift+u | cmd+shift+u | Toggle case for word at caret or selected block | N/A
Expand Down Expand Up @@ -240,7 +240,7 @@ ctrl+shift+alt+j | ctrl+cmd+g | Sublime Text style multiple selections | ✅

## Installation

1. Install Visual Studio Code 1.7.0 or higher
1. Install Visual Studio Code 1.8.0 or higher
1. Launch Code
1. From the extension view `Ctrl`-`Shift`-`X` (Windows, Linux) or `Cmd`-`Shift`-`X` (macOS)
1. Search and Choose the extension `Intellij IDEA Keybindings`
Expand All @@ -267,7 +267,7 @@ npm install
Now you can compile the code:

1. Launch Code
1. Edit `src/package-with-comment.json`
1. Edit **`src/package-with-comment.json`** (**NOT `package.json`**)
1. Run Build Task `Ctrl`-`Shift`-`B` (Windows, Linux) or `Cmd`-`Shift`-`B` (macOS)
1. Run Command Markdown Generator `node src/tool/gene-keybind-markdown.js`
1. Paste the Command Markdown to `README.md`
Expand All @@ -283,6 +283,7 @@ when changes are saved.
* [@HSAR](https://github.com/HSAR)
* [@mastersimon](https://github.com/mastersimon)
* [@thekalinga](https://github.com/thekalinga)
* [@joaomoreno](https://github.com/joaomoreno)


## License
Expand Down
27 changes: 11 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.6",
"version": "0.2.7",
"publisher": "k--kato",
"engines": {
"vscode": "^1.7.0"
"vscode": "^1.8.0"
},
"displayName": "IntelliJ IDEA Keybindings",
"description": "Port of IntelliJ IDEA Keybindings",
Expand Down Expand Up @@ -296,18 +296,13 @@
"command": "editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete line at caret"
},










{
}, {
"key": "ctrl+shift+j",
"mac": "ctrl+shift+j",
"command": "editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Smart line join"
}, {
"key": "ctrl+enter",
"mac": "cmd+enter",
"command": "lineBreakInsert",
Expand Down Expand Up @@ -1364,8 +1359,8 @@
"mac": "ctrl+cmd+g",
"command": "editor.action.selectHighlights",
"when": "editorFocus",
"intellij": "Sublime text Style Multiple Selections"
"intellij": "Sublime Text style multiple selections"
}
]
}
}
}
13 changes: 5 additions & 8 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.6",
"version": "0.2.7",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
"vscode": "^1.8.0"
},
"displayName": "IntelliJ IDEA Keybindings",
"description": "Port of IntelliJ IDEA Keybindings",
Expand Down Expand Up @@ -309,16 +309,13 @@
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete line at caret"
},
/*
{
"key": "ctrl+shift+j",
"mac": "ctrl+shift+j",
"command": "",
"when": "",
"intellij": "Smart line join",
"todo": "N/A"
"command": "editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Smart line join"
},
*/
{
"key": "ctrl+enter",
"mac": "cmd+enter",
Expand Down

0 comments on commit 33213ae

Please sign in to comment.