File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -456,11 +456,12 @@ The command will prompt you to select one of the available sections."
456
456
" Prevent paredit from inserting useless spaces.
457
457
See `paredit-space-for-delimiter-predicates' for the meaning of
458
458
ENDP and DELIM."
459
- (or endp
460
- (not (memq delim '(?\" ?\{ ?\( ))) ; ; always insert for [
461
- (not (or (derived-mode-p 'clojure-mode ) ; ; FIXME why does this check exist
462
- (derived-mode-p 'cider-repl-mode )))
463
- (not (looking-back " \\ _<#\\ ??" )))) ; ; auto-gensym syntax foo#
459
+ (and (not (eq (char-before ) ?' ))
460
+ (or endp
461
+ (not (memq delim '(?\" ?\{ ?\( ))) ; ; always insert for [
462
+ (not (or (derived-mode-p 'clojure-mode ) ; ; FIXME why does this check exist
463
+ (derived-mode-p 'cider-repl-mode )))
464
+ (not (looking-back " \\ _<#\\ ??" ))))) ; ; auto-gensym syntax foo#
464
465
465
466
466
467
(defconst clojure--collection-tag-regexp " #\\ (::[a-zA-Z0-9._-]*\\ |:?\\ ([a-zA-Z0-9._-]+/\\ )?[a-zA-Z0-9._-]+\\ )"
You can’t perform that action at this time.
0 commit comments