Skip to content

Commit 1f87e5c

Browse files
samwaggbbatsov
authored andcommitted
[Fix #608] Fix alignment issue involving margin comments.
Alignment wasn't working properly when nested, multi-line sexps were followed by margin comments.
1 parent c1ae4be commit 1f87e5c

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

clojure-mode-indentation-test.el

+37
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,43 @@ x
705705
"#?@(:clj [2]
706706
:cljs [2])")
707707

708+
(when-aligning-it "should handle sexps broken up by line comments"
709+
"
710+
(let [x 1
711+
;; comment
712+
xx 1]
713+
xx)"
714+
715+
"
716+
{:x 1
717+
;; comment
718+
:xxx 2}"
719+
720+
"
721+
(case x
722+
:aa 1
723+
;; comment
724+
:a 2)")
725+
726+
(when-aligning-it "should work correctly when margin comments appear after nested, multi-line, non-terminal sexps"
727+
"
728+
(let [x {:a 1
729+
:b 2} ; comment
730+
xx 3]
731+
x)"
732+
733+
"
734+
{:aa {:b 1
735+
:cc 2} ;; comment
736+
:a 1}}"
737+
738+
"
739+
(case x
740+
:a (let [a 1
741+
aa (+ a 1)]
742+
aa); comment
743+
:aa 2)")
744+
708745
(it "should handle improperly indented content"
709746
(let ((content "(let [a-long-name 10\nb 20])")
710747
(aligned-content "(let [a-long-name 10\n b 20])"))

0 commit comments

Comments
 (0)