Looking to set a variable under latex mode. The idea is that the value set under latex mode will override the value of the same variable set in the customise section. I am very new to emacs so these are my attempts:
(add-hook 'LaTeX-mode-hook '(setq line-move-visual t))
(add-hook 'latex-mode-hook (lambda () (setq line-move-visual t)))
Why do these not work? What should I do instead?
Clarification: looking to set the variable (setq line-move-visual t) as I have it as (setq line-move-visual nil) for all other files
line-move-visual
to nil for everything else? Those two settings might be interfering. - legosciatex-mode.el
, then how about trying?:(add-hook 'LaTeX-mode-hook (lambda () (setq line-move-visual t)))
Everyone who uses AUCTeX gets confused (at the outset) regarding the hooks because they are so similar to the built-in library: gnu.org/software/auctex/manual/auctex/Modes-and-Hooks.html - lawlist