File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -554,9 +554,14 @@ replacement for `cljr-expand-let`."
554
554
(clojure-font-lock-setup)
555
555
(add-hook 'paredit-mode-hook #'clojure-paredit-setup )
556
556
; ; `electric-layout-post-self-insert-function' prevents indentation in strings
557
- ; ; and comments, force indentation in docstrings:
557
+ ; ; and comments, force indentation of non-inlined docstrings:
558
558
(add-hook 'electric-indent-functions
559
- (lambda (_char ) (if (clojure-in-docstring-p) 'do-indent )))
559
+ (lambda (_char ) (if (and (clojure-in-docstring-p)
560
+ (save-excursion
561
+ (beginning-of-line-text )
562
+ (eq (get-text-property (point ) 'face )
563
+ 'font-lock-doc-face )))
564
+ 'do-indent )))
560
565
; ; integration with project.el
561
566
(add-hook 'project-find-functions #'clojure-current-project ))
562
567
You can’t perform that action at this time.
0 commit comments