Skip to content

Commit 8998c3a

Browse files
committed
Merge branch 'master' into declaration-or-usages
2 parents 855f6cf + 6a488c1 commit 8998c3a

27 files changed

+584
-478
lines changed

Diff for: .clj-kondo/config.edn

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{:config-paths ["ericdallo/clj4intellij"]}

Diff for: .gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ bin
77
.classpath
88
/.nrepl-port
99
.lsp/.cache
10-
.clj-kondo
11-
!.clj-kondo/.config
10+
/.clj-kondo/*
11+
!/.clj-kondo/config.edn
1212
.project
1313
.settings

Diff for: .lsp/config.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:cljfmt {:indents {proxy+ [[:block 2] [:inner 1]]}}
1+
{:classpath-config-paths ["ericdallo/clj4intellij"]
22
:project-specs [{:classpath-cmd ["./gradlew" "-q" "classpath"]
33
:project-path "build.gradle.kts"}
44
{:classpath-cmd ["clojure" "-Spath"]

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@
44

55
- Fix go to declaration or usages. #70
66

7-
## 3.1.0
7+
## 3.3.0
88

9+
- Add support for `forward`, `backward`, `forward-select`, `backward-select` paredit actions. #72
10+
11+
## 3.2.0
12+
13+
- Bump clj4intellij to 0.7.1
14+
- Support Namespaces on search everywhere (Shift + shift). #64
15+
16+
## 3.1.1
17+
18+
- Remove `:` lexer check since this is delegated to clojure-lsp/clj-kondo already.
919
- Fix comment form complain about missing paren.
1020
- Improve server installation fixing concurrency bugs + using lsp4ij install API.
1121

Diff for: build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repositories {
3535

3636
dependencies {
3737
implementation ("org.clojure:clojure:1.12.0")
38-
implementation ("com.github.ericdallo:clj4intellij:0.6.3")
38+
implementation ("com.github.ericdallo:clj4intellij:0.7.1")
3939
implementation ("seesaw:seesaw:1.5.0")
4040
implementation ("camel-snake-kebab:camel-snake-kebab:0.4.3")
4141
implementation ("com.rpl:proxy-plus:0.0.9")

Diff for: docs/features.md

+16
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,19 @@ This plugin relies on [clojure-lsp](https://clojure-lsp.io/) features and [lsp4i
113113
> <kbd>Alt</kbd> + <kbd>k</kbd>
114114
115115
![](../images/paredit-kill.gif)
116+
117+
##### Forward sexpr
118+
119+
> <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>]</kbd>
120+
121+
##### Forward select sexpr
122+
123+
> <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Alt</kbd> + <kbd>]</kbd>
124+
125+
##### Backward sexpr
126+
127+
> <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>[</kbd>
128+
129+
##### Backward select sexpr
130+
131+
> <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>Alt</kbd> + <kbd>[</kbd>

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = com.github.clojure-lsp
55
pluginName = clojure-lsp
6-
pluginVersion = 3.1.0
6+
pluginVersion = 3.3.0
77

88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.

Diff for: src/gen/com/github/clojure_lsp/intellij/language/parser/_ClojureLexer.java

+112-112
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)