[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: difficulty entering balance mode
From: |
Haines Brown |
Subject: |
Re: difficulty entering balance mode |
Date: |
Sat, 25 Jul 2015 06:39:49 -0400 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Sat, Jul 25, 2015 at 04:02:34AM -0400, Stefan Monnier wrote:
> > (append '(("\\.bal$" . balance-mode)) auto-mode-alist))
> ^
> Should be \\'
Thanks, Stefan. There seem to be two legitimate versions of this. The
balance.el file says to use:
(autoload 'balance-mode "balance")
(setq auto-mode-alist
(append '(("\\.bal$" . balance-mode)) auto-mode-alist))
you and others have said to use:
(autoload 'balance-mode "balance") ;; takes twice
(setq auto-mode-alist
(append '(("\\.bal\\'" . balance-mode)) auto-mode-alist))
both open the balance.el file, given that it requires two commands to do
it. That is, this is not my problem.
- Re: difficulty entering balance mode (SOLVED), (continued)
- Re: difficulty entering balance mode, Ian Zimmerman, 2015/07/29
- Message not available
- Re: difficulty entering balance mode, Haines Brown, 2015/07/30
- Re: difficulty entering balance mode, Ian Zimmerman, 2015/07/30
- Re: difficulty entering balance mode, Haines Brown, 2015/07/30
- Re: difficulty entering balance mode, Emanuel Berg, 2015/07/30
Re: difficulty entering balance mode, Stefan Monnier, 2015/07/25