File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed
src/main/clojure/com/github/clojure_lsp/intellij/extension Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## [ Unreleased]
4
+
5
+ - Fix default shortcuts being added for already customized shortcuts.
4
6
5
7
## 2.6.2
6
8
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ fun properties(key: String) = project.findProperty(key).toString()
5
5
plugins {
6
6
id(" org.jetbrains.kotlin.jvm" ) version " 1.9.0"
7
7
id(" dev.clojurephant.clojure" ) version " 0.7.0"
8
- id(" org.jetbrains.intellij" ) version " 1.15.0 "
8
+ id(" org.jetbrains.intellij" ) version " 1.17.4 "
9
9
id(" org.jetbrains.changelog" ) version " 1.3.1"
10
10
id(" org.jetbrains.grammarkit" ) version " 2021.2.2"
11
11
}
@@ -24,7 +24,7 @@ repositories {
24
24
25
25
dependencies {
26
26
implementation (" org.clojure:clojure:1.11.1" )
27
- implementation (" com.github.ericdallo:clj4intellij:0.5.2 " )
27
+ implementation (" com.github.ericdallo:clj4intellij:0.5.3 " )
28
28
implementation (" seesaw:seesaw:1.5.0" )
29
29
implementation (" camel-snake-kebab:camel-snake-kebab:0.4.3" )
30
30
implementation (" babashka:process:0.5.18" )
@@ -138,7 +138,7 @@ tasks {
138
138
// pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
139
139
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
140
140
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
141
- channels.set(listOf (properties( " pluginVersion " ).split( ' - ' ).getOrElse( 1 ) { " default" }.split( ' . ' ).first() ))
141
+ channels.set(listOf (" default" ))
142
142
}
143
143
144
144
buildSearchableOptions {
Original file line number Diff line number Diff line change 2
2
:mvn/repos {" intellij-1" {:url " https://cache-redirector.jetbrains.com/intellij-dependencies" }
3
3
" intellij-2" {:url " https://www.jetbrains.com/intellij-repository/releases" }}
4
4
:deps {org.clojure/clojure {:mvn/version " 1.11.1" }
5
- com.github.ericdallo/clj4intellij {:mvn/version " 0.5.2 " }
5
+ com.github.ericdallo/clj4intellij {:mvn/version " 0.5.3 " }
6
6
seesaw/seesaw {:mvn/version " 1.5.0" }
7
7
camel-snake-kebab/camel-snake-kebab {:mvn/version " 0.4.3" }
8
8
com.github.clojure-lsp/clojure-lsp {:mvn/version " 2024.03.01-11.37.51" }
Original file line number Diff line number Diff line change 56
56
{:name " thread-last" :text " Thread last expression" :description " Thread last expression" }
57
57
{:name " unwind-all" :text " Unwind whole thread" :description " Unwind whole thread" }
58
58
{:name " unwind-thread" :text " Unwind thread once" :description " Unwind thread once" }
59
- {:name " forward-slurp" :text " Slurp forward" :description " Slurp forward" :keyboard-shortcut {:first " alt CLOSE_BRACKET" :replace-all true }}
60
- {:name " forward-barf" :text " Barf forward" :description " Barf forward" :keyboard-shortcut {:first " alt OPEN_BRACKET" :replace-all true }}
61
- {:name " backward-slurp" :text " Slurp backward" :description " Slurp backward" :keyboard-shortcut {:first " alt shift CLOSE_BRACKET" :replace-all true }}
62
- {:name " backward-barf" :text " Barf backward" :description " Barf backward" :keyboard-shortcut {:first " alt shift OPEN_BRACKET" :replace-all true }}
63
- {:name " raise-sexp" :text " Raise sexpr" :description " Raise current sexpr" :keyboard-shortcut {:first " alt R" :replace-all true }}
64
- {:name " kill-sexp" :text " Kill sexpr" :description " Kill current sexpr" :keyboard-shortcut {:first " alt K" :replace-all true }}])
59
+ {:name " forward-slurp" :text " Slurp forward" :description " Slurp forward (Paredit) " :keyboard-shortcut {:first " alt CLOSE_BRACKET" :replace-all true }}
60
+ {:name " forward-barf" :text " Barf forward" :description " Barf forward (Paredit) " :keyboard-shortcut {:first " alt OPEN_BRACKET" :replace-all true }}
61
+ {:name " backward-slurp" :text " Slurp backward" :description " Slurp backward (Paredit) " :keyboard-shortcut {:first " alt shift CLOSE_BRACKET" :replace-all true }}
62
+ {:name " backward-barf" :text " Barf backward" :description " Barf backward (Paredit) " :keyboard-shortcut {:first " alt shift OPEN_BRACKET" :replace-all true }}
63
+ {:name " raise-sexp" :text " Raise sexpr" :description " Raise current sexpr (Paredit) " :keyboard-shortcut {:first " alt R" :replace-all true }}
64
+ {:name " kill-sexp" :text " Kill sexpr" :description " Kill current sexpr (Paredit) " :keyboard-shortcut {:first " alt K" :replace-all true }}])
65
65
66
66
(defn -runActivity [_this ^Project _project]
67
67
(action/register-action! :id " ClojureLSP.FindReferences"
You can’t perform that action at this time.
0 commit comments