File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Bugs fixed
6
6
7
+ * [ #550 ] ( https://github.com/clojure-emacs/clojure-mode/issues/550 ) : Fix ` outline-regexp ` so ` outline-insert-heading ` behaves correctly.
7
8
* [ #551 ] ( https://github.com/clojure-emacs/clojure-mode/issues/551 ) : Indent ` clojure-align ` region before aligning.
8
9
* [ #520 ] ( https://github.com/clojure-emacs/clojure-mode/issues/508 ) : Fix allow ` clojure-align-cond-forms ` to recognize qualified forms.
9
10
* Enhance add arity refactoring to support a ` defn ` inside a reader conditional.
Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ replacement for `cljr-expand-let`."
507
507
(add-to-list 'imenu-generic-expression '(nil clojure-match-next-def 0 ))
508
508
(setq-local indent-tabs-mode nil )
509
509
(setq-local paragraph-ignore-fill-prefix t )
510
- (setq-local outline-regexp " ;;;\\ ( ;* [^ \t\n ] \\ ) \\ |( " )
510
+ (setq-local outline-regexp " ;;;;* " )
511
511
(setq-local outline-level 'lisp-outline-level )
512
512
(setq-local comment-start " ;" )
513
513
(setq-local comment-start-skip " ;+ *" )
You can’t perform that action at this time.
0 commit comments