From: Jonas Bernoulli Date: Sat, 8 Aug 2020 11:49:56 +0000 (+0200) Subject: .dir-locals.el: Set variables for correct "shell" mode X-Git-Tag: 0.31_rc0~24 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=8cf6af449e90aa62344a2f8ef9bbef1a16a5ead6 .dir-locals.el: Set variables for correct "shell" mode The major mode used for shell scripts is named 'sh-mode'. 'shell-mode' on the other hand implements an interactive shell in emacs-lisp. --- diff --git a/.dir-locals.el b/.dir-locals.el index fc75ae61..b3ddffe8 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -15,7 +15,7 @@ (emacs-lisp-mode (indent-tabs-mode . t) (tab-width . 8)) - (shell-mode + (sh-mode (indent-tabs-mode . t) (tab-width . 8) (sh-basic-offset . 4)