From: Mark Wooding Date: Mon, 5 Nov 2012 23:01:06 +0000 (+0000) Subject: dot/emacs: Fix `@BASH@' entry in `interpreter-mode-alist'. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/9a60965e639f69ccfe7a0ce30e40d4f24f9c4119?ds=sidebyside dot/emacs: Fix `@BASH@' entry in `interpreter-mode-alist'. Brown paper bag, please. --- diff --git a/dot/emacs b/dot/emacs index 1a69858..7c97a2d 100644 --- a/dot/emacs +++ b/dot/emacs @@ -212,7 +212,7 @@ (setq dabbrev-case-replace nil) ;Retain case when completing (setq linum-format "%7d ") (setq next-line-add-newlines nil) ;Don't add weird newlines -(setq split-height-threshold 45) ;Reuse windows where sensible +(setq split-height-threshold nil) ;Reuse windows where sensible (setq display-buffer-reuse-frames nil ;Don't confuse me by showing buffers iswitchb-default-method 'samewindow) ;in other random frames (setq dired-deletion-confirmer ;Make deletion easier in dired @@ -546,7 +546,7 @@ (setq interpreter-mode-alist (append `(("runlisp" . lisp-mode) - ("@BASH" . sh-mode) + ("@BASH@" . sh-mode) ("@PYTHON@" . python-mode) ("@PERL@" . perl-mode) ("@TCLSH@" . tcl-mode)