Skip to content

Commit 283b852

Browse files
committed
Add more shortcuts
1 parent 6b5a3db commit 283b852

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased]
44

5+
- Add shortcuts to backward slurp and barf.
6+
- Add shortcut documentation to all features, check the features doc page.
7+
58
## 1.14.5
69

710
- Fix ctrl/cmd + click going to definition automatically. #27

src/main/resources/META-INF/plugin.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,12 +315,16 @@
315315
class="com.github.clojure_lsp.intellij.action.BackwardSlurpAction"
316316
text="Slurp backward"
317317
description="Slurp backward"
318-
icon="com.github.clojure_lsp.intellij.Icons.CLOJURE"/>
318+
icon="com.github.clojure_lsp.intellij.Icons.CLOJURE">
319+
<keyboard-shortcut keymap="$default" first-keystroke="alt shift CLOSE_BRACKET" replace-all="true"/>
320+
</action>
319321
<action id="ClojureLSP.BackwardBarf"
320322
class="com.github.clojure_lsp.intellij.action.BackwardBarfAction"
321323
text="Barf backward"
322324
description="Barf backward"
323-
icon="com.github.clojure_lsp.intellij.Icons.CLOJURE"/>
325+
icon="com.github.clojure_lsp.intellij.Icons.CLOJURE">
326+
<keyboard-shortcut keymap="$default" first-keystroke="alt shift OPEN_BRACKET" replace-all="true"/>
327+
</action>
324328
<action id="ClojureLSP.RaiseSexp"
325329
class="com.github.clojure_lsp.intellij.action.RaiseSexpAction"
326330
text="Raise sexpr"

0 commit comments

Comments
 (0)