Skip to content

Commit

Permalink
[Fix #308 Fix #287 Fix clojure-emacs#45] Corner-case indentation of m…
Browse files Browse the repository at this point in the history
…ulti-line sexps

We were indenting like this
[[
  2] a
  x]

Now we indent like this
[[
  2] a
 x]
  • Loading branch information
Malabarba authored and kommen committed Oct 31, 2024
1 parent ae0ed33 commit f79abdb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions clojure-mode-indentation-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,16 @@ values of customisable variables."
(ns ^:doc app.core
|(:gen-class))")

(check-indentation multiline-sexps
"
[[
2] a
|x]"
"
[[
2] a
|x]")


(provide 'clojure-mode-indentation-test)

Expand Down

0 comments on commit f79abdb

Please sign in to comment.