Hi, Kurt Stephens <[EMAIL PROTECTED]> writes:
> Perhaps a loadable set of vim and emacs (and other) settings should be added > to the repository? I'm pretty sure Ian is using something like the following (or a derivative) for his Emacs smalltalk-mode: http://piumarta.com/pepsi/old/pepsi-0.1/etc/idst-mode.el It may be verbatim from the GNU Smalltalk implementation; I'm not sure, though. I added the following to my .emacs.d/init.el for Jolt files (after running (byte-compile-file "idst-mode.el")): ;; Major mode for COLA files. (load "idst-mode") (setq auto-mode-alist (cons '("\\.st\\'" . smalltalk-mode) auto-mode-alist)) (setq auto-mode-alist (cons '("\\.k\\'" . lisp-mode) auto-mode-alist)) It works well enough for now, but doesn't really cope with embedded C in a .st file, or embedded Jolt2 grammars or message sends in a .k file. Better than nothing, I suppose. -- Michael FIG <[EMAIL PROTECTED]> //\ http://michael.fig.org/ \// _______________________________________________ fonc mailing list [email protected] http://vpri.org/mailman/listinfo/fonc
