File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 12
12
13
13
### Bugs fixed
14
14
15
+ * [ #193 ] ( https://github.com/clojure-emacs/inf-clojure/pull/193 ) : Set syntax table in repl buffer
15
16
* [ #152 ] ( https://github.com/clojure-emacs/inf-clojure/issues/152 ) : Sanitize should only remove whitespace at the end of a command.
16
17
* [ #188 ] ( https://github.com/clojure-emacs/inf-clojure/pull/188 ) : Handle newlines between forms for ` inf-clojure-eval-buffer ` .
17
18
* [ #189 ] ( https://github.com/clojure-emacs/inf-clojure/pull/189 ) : Font-lock code inserted in the REPL from a source buffer.
Original file line number Diff line number Diff line change @@ -770,6 +770,7 @@ process buffer for a list of commands.)"
770
770
(with-current-buffer (apply #'make-comint
771
771
process-buffer-name (car cmdlist) nil (cdr cmdlist))
772
772
(inf-clojure-mode)
773
+ (set-syntax-table clojure-mode-syntax-table)
773
774
(setq-local inf-clojure-repl-type repl-type)
774
775
(hack-dir-local-variables-non-file-buffer ))))
775
776
; ; update the default comint buffer and switch to it
You can’t perform that action at this time.
0 commit comments