Fix quotes in LaTeX
With a default installation of Prelude and the `prelude-latex` package enabled, when the user types `"` on a LaTeX document the following shows up: ``` ``|' ``` where the `|` is the point. Note that the parenthesis are unbalanced, there's a missing single quote `'` in the end. The reason seems to be that both AUCTeX and SmartParens try to autocomplete and they interact bad. The solution is to disable AUCTeX autocompletion feature just for the quotes and let SmartParens take over. It does the right thing by putting the point on the right place and removing the closing quotes if the user hits backspace.
This commit is contained in:
parent
e65c39e985
commit
b774a24110
1 changed files with 2 additions and 0 deletions
|
@ -54,6 +54,8 @@
|
|||
;; AUCTeX configuration
|
||||
(setq TeX-auto-save t)
|
||||
(setq TeX-parse-self t)
|
||||
(setq TeX-close-quote "")
|
||||
(setq TeX-open-quote "")
|
||||
|
||||
(setq-default TeX-master nil)
|
||||
|
||||
|
|
Loading…
Reference in a new issue