diff --git a/README.md b/README.md index 19cbfb2..faab0ce 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Feature Overview -Use Ctrl-j | ⌘-j to join lines, just like in Atom and similar to Sublime Text: the next line is joined to +Use Ctrl+j | ⌘+j to join lines, just like in Atom and similar to Sublime Text: the next line is joined to the current line, and all whitespace is replaced with a single space. ![join-lines-preview](https://cloud.githubusercontent.com/assets/2899448/11255751/36ee036a-8e48-11e5-8e1f-8889bf2df026.gif) @@ -20,3 +20,7 @@ of the original line (minus whitespace) * If text is selected, and it spans multiple lines, the selected lines are joined, and the selection is retained (minus whitespace) Multiple selections are also supported. + +## Support + +[Create an issue](https://github.com/wmaurer/vscode-join-lines/issues), or ping [@waynemaurer](https://twitter.com/waynemaurer) on Twitter. diff --git a/package.json b/package.json index 6a5bdf7..3850c48 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ }, "homepage": "https://github.com/wmaurer/vscode-join-lines/blob/master/README.md", "license": "MIT", - "version": "0.1.3", + "version": "0.1.4", "publisher": "wmaurer", "engines": { "vscode": "^0.10.0" @@ -38,6 +38,10 @@ { "command": "extension.join-lines", "key": "ctrl+j" + }, + { + "command": "extension.join-lines", + "key": "cmd+j" } ] },