From 45409de2a467be28ab6c06125cbd19db7794bbc2 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Wed, 12 Aug 2020 20:35:11 -0400 Subject: [PATCH] Enable `TeX-narrow-to-group` and `LaTeX-narrow-to-environment` --- .emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 051f5d1..7bbe19a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -15,6 +15,8 @@ (put 'upcase-region 'disabled nil) (put 'downcase-region 'disabled nil) (put 'narrow-to-region 'disabled nil) +(put 'TeX-narrow-to-group 'disabled nil) +(put 'LaTeX-narrow-to-environment 'disabled nil) ;;;; save backups and autosaves in tmp (setq backup-directory-alist `((".*" . ,temporary-file-directory))