emacs: 23.3.1, zsh: 4.3.17, gnome-terminal: 3.4.1.1
My default major mode is text-mode.
When invoking C-x e in gnome-terminal I would like to set emacs to use sh-mode because it's very likely the mode I would set manually anyways. How to do so?
Possible solution -
Is there a way to create a template file for the C-x e cmd (to add a heading: # -*- mode: sh -*-)?
Solution:
;; open C-x e editor in sh-mode
(setq auto-mode-alist (cons '("\\(^\\|/\\)zshec[^/]*$" . sh-mode) auto-mode-alist))