Skip to content

Commit

Permalink
releasing v.0.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Dec 19, 2017
1 parent 21d4fe3 commit 6fe589d
Show file tree
Hide file tree
Showing 7 changed files with 3,026 additions and 1,892 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
Expand Down
42 changes: 9 additions & 33 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,18 @@
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process

// A task runner that calls a custom npm script that compiles the extension.
{
"version": "0.1.0",

// we want to run npm
"version": "2.0.0",
"command": "npm",

// the command is a shell script
"isShellCommand": true,

// show the output window only if unrecognized errors occur.
"showOutput": "always",

"args": ["run"],

"tasks": [
{
"taskName": "gulp",
"suppressTaskName": true,

// If this property is set to true, Ctrl+Shift+B will trigger this task.
"isBuildCommand": true,

// we run the custom script "compile" as defined in package.json
"label": "Run gulp build",
"type": "shell",
"args": ["gulp", "build"],

// The tsc compiler is started in watching mode
"isWatching": true,

// use the standard tsc in watch mode problem matcher to find compile problems in the output.
"problemMatcher": "$eslint-stylish"
"isBackground": true,
"problemMatcher": "$eslint-stylish",
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}
64 changes: 34 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,99 +1,103 @@
# Change Log

## 0.2.17 (Dec 20, 2017)

* bug fix - Cmd+E opens Recent Projects popup instead of current project's Recent Files. See [#97](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/97)

## 0.2.16 (Nov 1, 2017)

* bug fix - fix cmd+k commit shortcut. See [#93](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/93)
* bug fix - fix cmd+k commit shortcut. See [#93](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/93)

## 0.2.15 (Oct 7, 2017)

* bug fix - Wrong Mac shortcuts to move lines/statements up/down. See [#90](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/90)
* bug fix - Wrong Mac shortcuts to move lines/statements up/down. See [#90](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/90)

## 0.2.14 (Sep 22, 2017)

* bug fix - send `ctrl+d` to terminal on mac. See [#88](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/88)
* bug fix - cmd+k in integrated terminal should clear terminal. See [#85](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/85)
* bug fix - send `ctrl+d` to terminal on mac. See [#88](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/88)
* bug fix - cmd+k in integrated terminal should clear terminal. See [#85](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/85)

## 0.2.13 (Aug 9, 2017)

* enhancement - Updated mapping as per https://github.com/Microsoft/vscode/issues/28383. See [#81](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/81).
* enhancement - Updated mapping as per https://github.com/Microsoft/vscode/issues/28383. See [#81](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/81).

## 0.2.12 (Jun 10, 2017)

* enhancement - Add support for Goto Implementation. See [#77](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/77).
* enhancement - Add support for Goto Implementation. See [#77](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/77).
* bug fix - Start debug doesn't work.

## 0.2.11 (Jun 1, 2017)

* enhancement - “find in files” shortcut doesn't works. See [#54](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/54).
* enhancement - “find in files” shortcut doesn't works. See [#54](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/54).

## 0.2.10 (March 3, 2017)

* enhancement - Navigate Backward. See [#63](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/63).
* enhancement - Navigate Backward. See [#63](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/63).
* enhancement - Add secondary keymaps.

## 0.2.9 (February 25, 2017)

* enhancement - Added IntelliJ products to package.json. See [#60](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/60).
* enhancement - Added JetBrains products to README. See [#61](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/61).
* enhancement - Added IntelliJ products to package.json. See [#60](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/60).
* enhancement - Added JetBrains products to README. See [#61](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/61).
* enhancement - Update icon from png to svg.
* enhancement - new file keybinding. See [#59](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/59).
* enhancement - new file keybinding. See [#59](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/59).

## 0.2.8 (January 30, 2017)

* bug fix - 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 - Map to new shortcuts for new features in vscode insiders. See [#50](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/50).
* bug fix - `cmd+5` open debug window doesn't work.
* enhancement - add terminal focusPrevious and terminal focusNext. See [#58](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/58).
* enhancement - add terminal focusPrevious and terminal focusNext. See [#58](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/58).

## 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).
* enhancement - Map to new shortcuts for new features in vscode insiders. See [#50](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/50).
* bug fix - Update package.json with a compatible engine. See [#51](https://github.com/kasecato/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/kasecato/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).
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/46).
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/46).

## 0.2.5 (December 1, 2016)

* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/40).
* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/40).

## 0.2.4 (November 30, 2016)

* enhancement - Ctrl+Shift+Numpad (- and +) should perform "Fold all" & "Expand all". See [#38](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/38).
* enhancement - ctrl+f12 should do what ctrl+shift+o does by default. See [#39](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/39).
* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/40).
* enhancement - Ctrl+Shift+Numpad (- and +) should perform "Fold all" & "Expand all". See [#38](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/38).
* enhancement - ctrl+f12 should do what ctrl+shift+o does by default. See [#39](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/39).
* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/40).

## 0.2.3 (November 29, 2016)

* enhancement - alt+1 should toggle close corresponding tool window instead of just opening. See [#36](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/36).
* enhancement - alt+1 should toggle close corresponding tool window instead of just opening. See [#36](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/36).

## 0.2.2 (November 24, 2016)

* bug fix - My Ctrl + Delete and Ctrl + Backspace shortcuts are inverted. See [#34](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/34).
* bug fix - My Ctrl + Delete and Ctrl + Backspace shortcuts are inverted. See [#34](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/34).

## 0.2.1 (November 17, 2016)
* enhancement - Add 'Delete Line' command. See [#31](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/31).
* enhancement - Add 'Delete Line' command. See [#31](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/31).
* enhancement - Add VS Code Marketplace batch.
* bug fix - fix README version

## 0.2.0 (November 17, 2016)
* enhancement - Add new key commands. See [#26](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/26).
* enhancement - Add new key commands. See [#26](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/26).
* enhancement - Add CHANGELOG.md.
* bug fix - Issue with Updating Extension and Versions. See [#27](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/27).
* bug fix - Issue with Updating Extension and Versions. See [#27](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/27).

## 0.1.10 (November 7, 2016)
* enhancement - add editorReadonly.
* enhancement - add travis ci cache.
* bug fix - Ctrl+Alt+L Not Formatting XML Documents. See [#23](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/23).
* bug fix - fix of extension name in README.md. See [#24](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/24).
* bug fix - Ctrl+Alt+L Not Formatting XML Documents. See [#23](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/23).
* bug fix - fix of extension name in README.md. See [#24](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/24).

## 0.1.9 (November 3, 2016)
* enhancement - update VS Code Market Category from Other to Keymaps.

## 0.1.8 (October 31, 2016)
* bug fix - Support fort start new line before. See [#19](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/19).
* bug fix - Support fort start new line before. See [#19](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/19).

## 0.1.7 (October 27, 2016)

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IntelliJ IDEA Key Bindings for Visual Studio Code

[![Build Status](https://travis-ci.org/k--kato/vscode-intellij-idea-keybindings.svg?branch=master)](https://travis-ci.org/k--kato/vscode-intellij-idea-keybindings) [![License: MIT](https://img.shields.io/badge/license-MIT-orange.svg)](LICENSE.md) [![Marketplace Version](https://vsmarketplacebadge.apphb.com/version/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings) [![Install](https://vsmarketplacebadge.apphb.com/installs-short/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings)
[![Build Status](https://travis-ci.org/kasecato/vscode-intellij-idea-keybindings.svg?branch=master)](https://travis-ci.org/kasecato/vscode-intellij-idea-keybindings) [![License: MIT](https://img.shields.io/badge/license-MIT-orange.svg)](LICENSE.md) [![Marketplace Version](https://vsmarketplacebadge.apphb.com/version/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings) [![Install](https://vsmarketplacebadge.apphb.com/installs-short/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings)

Port of IntelliJ IDEA key bindings for VS Code. Includes keymaps for popular JetBrains products like IntelliJ Ultimate, WebStorm, PyCharm, PHP Storm, etc.

Expand Down Expand Up @@ -253,7 +253,7 @@ alt+right | shift+cmd+] | Select next tab (Terminal) | ✅

## Installation

1. Install Visual Studio Code 1.13.0 or higher
1. Install Visual Studio Code 1.16.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 @@ -265,7 +265,7 @@ alt+right | shift+cmd+] | Select next tab (Terminal) | ✅
Clone a copy of the repo:

```
git clone https://github.com/k--kato/vscode-intellij-idea-keybindings.git
git clone https://github.com/kasecato/vscode-intellij-idea-keybindings.git
```


Expand Down Expand Up @@ -303,6 +303,7 @@ when changes are saved.
* [@gregbacchus](https://github.com/gregbacchus)
* [@acim](https://github.com/acim)
* [@skysteve](https://github.com/skysteve)
* [@spik3s](https://github.com/spik3s)


## License
Expand Down

0 comments on commit 6fe589d

Please sign in to comment.