You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
275 B
EmacsLisp
12 lines
275 B
EmacsLisp
2 years ago
|
(defun toggle-local-vars-on ()
|
||
|
(interactive)
|
||
|
(setq enable-local-variables t)
|
||
|
(message "enabled local variables"))
|
||
|
|
||
|
(defun toggle-local-vars-off ()
|
||
|
(interactive)
|
||
|
(setq enable-local-variables nil)
|
||
|
(message "disabled local variables"))
|
||
|
|
||
|
(provide 'toggle-local-vars)
|