1 ;;; -*- mode: emacs-lisp; coding: utf-8 -*-
3 ;;; Functions and macros for .emacs
5 ;;; (c) 2004 Mark Wooding
8 ;;;----- Licensing notice ---------------------------------------------------
10 ;;; This program is free software; you can redistribute it and/or modify
11 ;;; it under the terms of the GNU General Public License as published by
12 ;;; the Free Software Foundation; either version 2 of the License, or
13 ;;; (at your option) any later version.
15 ;;; This program is distributed in the hope that it will be useful,
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;;; GNU General Public License for more details.
20 ;;; You should have received a copy of the GNU General Public License
21 ;;; along with this program; if not, write to the Free Software Foundation,
22 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 ;;;--------------------------------------------------------------------------
25 ;;; Check command-line.
27 (defvar mdw-fast-startup nil
28 "Whether .emacs should optimize for rapid startup.
29 This may be at the expense of cool features.")
30 (let ((probe nil) (next command-line-args))
32 (cond ((string= (car next) "--mdw-fast-startup")
33 (setq mdw-fast-startup t)
35 (rplacd probe (cdr next))
36 (setq command-line-args (cdr next))))
39 (setq next (cdr next))))
41 ;;;--------------------------------------------------------------------------
42 ;;; Some general utilities.
45 (unless (fboundp 'make-regexp)
49 (defmacro mdw-regexps (&rest list)
50 "Turn a LIST of strings into a single regular expression at compile-time."
53 `',(make-regexp list))
55 ;; Some error trapping.
57 ;; If individual bits of this file go tits-up, we don't particularly want
58 ;; the whole lot to stop right there and then, because it's bloody annoying.
60 (defmacro trap (&rest forms)
61 "Execute FORMS without allowing errors to propagate outside."
65 ,(if (cdr forms) (cons 'progn forms) (car forms))
66 (error (message "Error (trapped): %s in %s"
67 (error-message-string err)
70 ;; Configuration reading.
72 (defvar mdw-config nil)
73 (defun mdw-config (sym)
74 "Read the configuration variable named SYM."
77 (flet ((replace (what with)
78 (goto-char (point-min))
79 (while (re-search-forward what nil t)
80 (replace-match with t))))
82 (insert-file-contents "~/.mdw.conf")
83 (replace "^[ \t]*\\(#.*\\|\\)\n" "")
84 (replace (concat "^[ \t]*"
85 "\\([-a-zA-Z0-9_.]*\\)"
88 "[ \t]**\\(\n\\|$\\)")
90 (car (read-from-string
91 (concat "(" (buffer-string) ")")))))))
92 (cdr (assq sym mdw-config)))
94 ;; Local variables hacking.
96 (defun run-local-vars-mode-hook ()
97 "Run a hook for the major-mode after local variables have been processed."
98 (run-hooks (intern (concat (symbol-name major-mode)
99 "-local-variables-hook"))))
100 (add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
102 ;; Set up the load path convincingly.
104 (dolist (dir (append (and (boundp 'debian-emacs-flavor)
105 (list (concat "/usr/share/"
106 (symbol-name debian-emacs-flavor)
108 (dolist (sub (directory-files dir t))
109 (when (and (file-accessible-directory-p sub)
110 (not (member sub load-path)))
111 (setq load-path (nconc load-path (list sub))))))
113 ;; Is an Emacs library available?
115 (defun library-exists-p (name)
116 "Return non-nil if NAME is an available library.
117 Return non-nil if NAME.el (or NAME.elc) somewhere on the Emacs
118 load path. The non-nil value is the filename we found for the
120 (let ((path load-path) elt (foundp nil))
121 (while (and path (not foundp))
122 (setq elt (car path))
123 (setq path (cdr path))
124 (setq foundp (or (let ((file (concat elt "/" name ".elc")))
125 (and (file-exists-p file) file))
126 (let ((file (concat elt "/" name ".el")))
127 (and (file-exists-p file) file)))))
130 (defun maybe-autoload (symbol file &optional docstring interactivep type)
131 "Set an autoload if the file actually exists."
132 (and (library-exists-p file)
133 (autoload symbol file docstring interactivep type)))
135 (defun mdw-kick-menu-bar (&optional frame)
136 "Regenerate FRAME's menu bar so it doesn't have empty menus."
138 (unless frame (setq frame (selected-frame)))
139 (let ((old (frame-parameter frame 'menu-bar-lines)))
140 (set-frame-parameter frame 'menu-bar-lines 0)
141 (set-frame-parameter frame 'menu-bar-lines old)))
143 ;; Splitting windows.
145 (unless (fboundp 'scroll-bar-columns)
146 (defun scroll-bar-columns (side)
147 (cond ((eq side 'left) 0)
150 (unless (fboundp 'fringe-columns)
151 (defun fringe-columns (side)
152 (cond ((not window-system) 0)
156 (defun mdw-horizontal-window-overhead ()
157 "Computes the horizontal window overhead.
158 This is the number of columns used by fringes, scroll bars and other such
160 (if (not window-system)
163 (dolist (what '(scroll-bar fringe))
164 (dolist (side '(left right))
165 (incf tot (funcall (intern (concat (symbol-name what) "-columns"))
169 (defun mdw-split-window-horizontally (&optional width)
170 "Split a window horizontally.
171 Without a numeric argument, split the window approximately in
172 half. With a numeric argument WIDTH, allocate WIDTH columns to
173 the left-hand window (if positive) or -WIDTH columns to the
174 right-hand window (if negative). Space for scroll bars and
175 fringes is not taken out of the allowance for WIDTH, unlike
176 \\[split-window-horizontally]."
178 (split-window-horizontally
179 (cond ((null width) nil)
180 ((>= width 0) (+ width (mdw-horizontal-window-overhead)))
181 ((< width 0) width))))
183 (defun mdw-divvy-window (&optional width)
184 "Split a wide window into appropriate widths."
186 (setq width (cond (width (prefix-numeric-value width))
188 (>= emacs-major-version 22))
191 (let* ((win (selected-window))
192 (sb-width (mdw-horizontal-window-overhead))
193 (c (/ (+ (window-width) sb-width)
194 (+ width sb-width))))
197 (split-window-horizontally (+ width sb-width))
199 (select-window win)))
201 ;; Don't raise windows unless I say so.
203 (defvar mdw-inhibit-raise-frame nil
204 "*Whether `raise-frame' should do nothing when the frame is mapped.")
206 (defadvice raise-frame
207 (around mdw-inhibit (&optional frame) activate compile)
208 "Don't actually do anything if `mdw-inhibit-raise-frame' is true, and the
209 frame is actually mapped on the screen."
210 (if mdw-inhibit-raise-frame
211 (make-frame-visible frame)
214 (defmacro mdw-advise-to-inhibit-raise-frame (function)
215 "Advise the FUNCTION not to raise frames, even if it wants to."
216 `(defadvice ,function
217 (around mdw-inhibit-raise (&rest hunoz) activate compile)
218 "Don't raise the window unless you have to."
219 (let ((mdw-inhibit-raise-frame t))
222 (mdw-advise-to-inhibit-raise-frame select-frame-set-input-focus)
224 ;; Transient mark mode hacks.
226 (defadvice exchange-point-and-mark
227 (around mdw-highlight (&optional arg) activate compile)
228 "Maybe don't actually exchange point and mark.
229 If `transient-mark-mode' is on and the mark is inactive, then
230 just activate it. A non-trivial prefix argument will force the
231 usual behaviour. A trivial prefix argument (i.e., just C-u) will
232 activate the mark and temporarily enable `transient-mark-mode' if
234 (cond ((or mark-active
235 (and (not transient-mark-mode) (not arg))
236 (and arg (or (not (consp arg))
237 (not (= (car arg) 4)))))
240 (or transient-mark-mode (setq transient-mark-mode 'only))
241 (set-mark (mark t)))))
243 ;; Functions for sexp diary entries.
245 (defun mdw-weekday (l)
246 "Return non-nil if `date' falls on one of the days of the week in L.
247 L is a list of day numbers (from 0 to 6 for Sunday through to
248 Saturday) or symbols `sunday', `monday', etc. (or a mixture). If
249 the date stored in `date' falls on a listed day, then the
250 function returns non-nil."
251 (let ((d (calendar-day-of-week date)))
253 (memq (nth d '(sunday monday tuesday wednesday
254 thursday friday saturday)) l))))
256 (defun mdw-todo (&optional when)
257 "Return non-nil today, or on WHEN, whichever is later."
258 (let ((w (calendar-absolute-from-gregorian (calendar-current-date)))
259 (d (calendar-absolute-from-gregorian date)))
261 (setq w (max w (calendar-absolute-from-gregorian
263 ((not european-calendar-style)
275 ;; Fighting with Org-mode's evil key maps.
277 (defvar mdw-evil-keymap-keys
278 '(([S-up] . [?\C-c up])
279 ([S-down] . [?\C-c down])
280 ([S-left] . [?\C-c left])
281 ([S-right] . [?\C-c right])
282 (([M-up] [?\e up]) . [C-up])
283 (([M-down] [?\e down]) . [C-down])
284 (([M-left] [?\e left]) . [C-left])
285 (([M-right] [?\e right]) . [C-right]))
286 "Defines evil keybindings to clobber in `mdw-clobber-evil-keymap'.
287 The value is an alist mapping evil keys (as a list, or singleton)
288 to good keys (in the same form).")
290 (defun mdw-clobber-evil-keymap (keymap)
291 "Replace evil key bindings in the KEYMAP.
292 Evil key bindings are defined in `mdw-evil-keymap-keys'."
293 (dolist (entry mdw-evil-keymap-keys)
295 (keys (if (listp (car entry))
298 (replacements (if (listp (cdr entry))
300 (list (cdr entry)))))
303 (setq binding (lookup-key keymap key))
305 (throw 'found nil))))
308 (define-key keymap key nil))
309 (dolist (key replacements)
310 (define-key keymap key binding))))))
312 (eval-after-load "org-latex"
315 "\\documentclass{strayman}
316 \\usepackage[utf8]{inputenc}
317 \\usepackage[palatino, helvetica, courier, maths=cmr]{mdwfonts}
318 \\usepackage[T1]{fontenc}
319 \\usepackage{graphicx, tikz, mdwtab, mdwmath, crypto, longtable}"
320 ("\\section{%s}" . "\\section*{%s}")
321 ("\\subsection{%s}" . "\\subsection*{%s}")
322 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
323 ("\\paragraph{%s}" . "\\paragraph*{%s}")
324 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
325 org-export-latex-classes)))
327 (setq org-export-docbook-xslt-proc-command "xsltproc --output %o %s %i"
328 org-export-docbook-xsl-fo-proc-command "fop %i.safe %o"
329 org-export-docbook-xslt-stylesheet
330 "/usr/share/xml/docbook/stylesheet/docbook-xsl/fo/docbook.xsl")
332 ;; Some hacks to do with window placement.
334 (defun mdw-clobber-other-windows-showing-buffer (buffer-or-name)
335 "Arrange that no windows on other frames are showing BUFFER-OR-NAME."
336 (interactive "bBuffer: ")
337 (let ((home-frame (selected-frame))
338 (buffer (get-buffer buffer-or-name))
339 (safe-buffer (get-buffer "*scratch*")))
340 (mapc (lambda (frame)
341 (or (eq frame home-frame)
342 (mapc (lambda (window)
343 (and (eq (window-buffer window) buffer)
344 (set-window-buffer window safe-buffer)))
345 (window-list frame))))
348 (defvar mdw-inhibit-walk-windows nil
349 "If non-nil, then `walk-windows' does nothing.
350 This is used by advice on `switch-to-buffer-other-frame' to inhibit finding
351 buffers in random frames.")
353 (defadvice walk-windows (around mdw-inhibit activate)
354 "If `mdw-inhibit-walk-windows' is non-nil, then do nothing."
355 (and (not mdw-inhibit-walk-windows)
358 (defadvice switch-to-buffer-other-frame
359 (around mdw-always-new-frame activate)
360 "Always make a new frame.
361 Even if an existing window in some random frame looks tempting."
362 (let ((mdw-inhibit-walk-windows t)) ad-do-it))
364 (defadvice display-buffer (before mdw-inhibit-other-frames activate)
365 "Don't try to do anything fancy with other frames.
366 Pretend they don't exist. They might be on other display devices."
369 ;;;--------------------------------------------------------------------------
370 ;;; Mail and news hacking.
372 (define-derived-mode mdwmail-mode mail-mode "[mdw] mail"
373 "Major mode for editing news and mail messages from external programs.
374 Not much right now. Just support for doing MailCrypt stuff."
377 (run-hooks 'mail-setup-hook))
379 (define-key mdwmail-mode-map [?\C-c ?\C-c] 'disabled-operation)
381 (add-hook 'mdwail-mode-hook
383 (set-buffer-file-coding-system 'utf-8)
384 (make-local-variable 'paragraph-separate)
385 (make-local-variable 'paragraph-start)
386 (setq paragraph-start
387 (concat "[ \t]*[-_][-_][-_]+$\\|^-- \\|-----\\|"
389 (setq paragraph-separate
390 (concat "[ \t]*[-_][-_][-_]+$\\|^-- \\|-----\\|"
391 paragraph-separate))))
393 ;; How to encrypt in mdwmail.
395 (defun mdwmail-mc-encrypt (&optional recip scm start end from sign)
397 (setq start (save-excursion
398 (goto-char (point-min))
399 (or (search-forward "\n\n" nil t) (point-min)))))
401 (setq end (point-max)))
402 (mc-encrypt-generic recip scm start end from sign))
404 ;; How to sign in mdwmail.
406 (defun mdwmail-mc-sign (key scm start end uclr)
408 (setq start (save-excursion
409 (goto-char (point-min))
410 (or (search-forward "\n\n" nil t) (point-min)))))
412 (setq end (point-max)))
413 (mc-sign-generic key scm start end uclr))
415 ;; Some signature mangling.
417 (defun mdwmail-mangle-signature ()
419 (goto-char (point-min))
420 (perform-replace "\n-- \n" "\n-- " nil nil nil)))
421 (add-hook 'mail-setup-hook 'mdwmail-mangle-signature)
422 (add-hook 'message-setup-hook 'mdwmail-mangle-signature)
424 ;; Insert my login name into message-ids, so I can score replies.
426 (defadvice message-unique-id (after mdw-user-name last activate compile)
427 "Ensure that the user's name appears at the end of the message-id string,
428 so that it can be used for convenient filtering."
429 (setq ad-return-value (concat ad-return-value "." (user-login-name))))
431 ;; Tell my movemail hack where movemail is.
433 ;; This is needed to shup up warnings about LD_PRELOAD.
435 (let ((path exec-path))
437 (let ((try (expand-file-name "movemail" (car path))))
438 (if (file-executable-p try)
439 (setenv "REAL_MOVEMAIL" try))
440 (setq path (cdr path)))))
442 (eval-after-load "erc"
443 '(load "~/.ercrc.el"))
445 ;;;--------------------------------------------------------------------------
446 ;;; Utility functions.
448 (or (fboundp 'line-number-at-pos)
449 (defun line-number-at-pos (&optional pos)
450 (let ((opoint (or pos (point))) start)
453 (goto-char (point-min))
459 (1+ (count-lines 1 (point))))))))
461 (defun mdw-uniquify-alist (&rest alists)
462 "Return the concatenation of the ALISTS with duplicate elements removed.
463 The first association with a given key prevails; others are
464 ignored. The input lists are not modified, although they'll
465 probably become garbage."
467 (let ((start-list (cons nil nil)))
468 (mdw-do-uniquify start-list
473 (defun mdw-do-uniquify (done end l rest)
474 "A helper function for mdw-uniquify-alist.
475 The DONE argument is a list whose first element is `nil'. It
476 contains the uniquified alist built so far. The leading `nil' is
477 stripped off at the end of the operation; it's only there so that
478 DONE always references a cons cell. END refers to the final cons
479 cell in the DONE list; it is modified in place each time to avoid
480 the overheads of `append'ing all the time. The L argument is the
481 alist we're currently processing; the remaining alists are given
484 ;; There are several different cases to deal with here.
487 ;; Current list isn't empty. Add the first item to the DONE list if
488 ;; there's not an item with the same KEY already there.
489 (l (or (assoc (car (car l)) done)
491 (setcdr end (cons (car l) nil))
492 (setq end (cdr end))))
493 (mdw-do-uniquify done end (cdr l) rest))
495 ;; The list we were working on is empty. Shunt the next list into the
496 ;; current list position and go round again.
497 (rest (mdw-do-uniquify done end (car rest) (cdr rest)))
499 ;; Everything's done. Remove the leading `nil' from the DONE list and
500 ;; return it. Finished!
504 "Insert the current date in a pleasing way."
506 (insert (save-excursion
507 (let ((buffer (get-buffer-create "*tmp*")))
508 (unwind-protect (progn (set-buffer buffer)
510 (shell-command "date +%Y-%m-%d" t)
512 (delete-backward-char 1)
514 (kill-buffer buffer))))))
516 (defun uuencode (file &optional name)
517 "UUencodes a file, maybe calling it NAME, into the current buffer."
518 (interactive "fInput file name: ")
520 ;; If NAME isn't specified, then guess from the filename.
524 (or (string-match "[^/]*$" file) 0))))
525 (print (format "uuencode `%s' `%s'" file name))
527 ;; Now actually do the thing.
528 (call-process "uuencode" file t nil name))
530 (defvar np-file "~/.np"
531 "*Where the `now-playing' file is.")
533 (defun np (&optional arg)
534 "Grabs a `now-playing' string."
538 (goto-char (point-max))
540 (insert-file-contents np-file)))))
542 (defun mdw-version-< (ver-a ver-b)
543 "Answer whether VER-A is strictly earlier than VER-B.
544 VER-A and VER-B are version numbers, which are strings containing digit
545 sequences separated by `.'."
546 (let* ((la (mapcar (lambda (x) (car (read-from-string x)))
547 (split-string ver-a "\\.")))
548 (lb (mapcar (lambda (x) (car (read-from-string x)))
549 (split-string ver-b "\\."))))
552 (cond ((null la) (throw 'done lb))
553 ((null lb) (throw 'done nil))
554 ((< (car la) (car lb)) (throw 'done t))
555 ((= (car la) (car lb)) (setq la (cdr la) lb (cdr lb))))))))
557 (defun mdw-check-autorevert ()
558 "Sets global-auto-revert-ignore-buffer appropriately for this buffer.
559 This takes into consideration whether it's been found using
560 tramp, which seems to get itself into a twist."
561 (cond ((not (boundp 'global-auto-revert-ignore-buffer))
563 ((and (buffer-file-name)
564 (fboundp 'tramp-tramp-file-p)
565 (tramp-tramp-file-p (buffer-file-name)))
566 (unless global-auto-revert-ignore-buffer
567 (setq global-auto-revert-ignore-buffer 'tramp)))
568 ((eq global-auto-revert-ignore-buffer 'tramp)
569 (setq global-auto-revert-ignore-buffer nil))))
571 (defadvice find-file (after mdw-autorevert activate)
572 (mdw-check-autorevert))
573 (defadvice write-file (after mdw-autorevert activate)
574 (mdw-check-autorevert))
576 ;;;--------------------------------------------------------------------------
579 (defadvice dired-maybe-insert-subdir
580 (around mdw-marked-insertion first activate)
581 "The DIRNAME may be a list of directory names to insert.
582 Interactively, if files are marked, then insert all of them.
583 With a numeric prefix argument, select that many entries near
584 point; with a non-numeric prefix argument, prompt for listing
587 (list (dired-get-marked-files nil
588 (and (integerp current-prefix-arg)
591 (and current-prefix-arg
592 (not (integerp current-prefix-arg))
593 (read-string "Switches for listing: "
594 (or dired-subdir-switches
595 dired-actual-switches)))))
596 (let ((dirs (ad-get-arg 0)))
597 (dolist (dir (if (listp dirs) dirs (list dirs)))
601 ;;;--------------------------------------------------------------------------
604 (defun mdw-w3m-browse-url (url &optional new-session-p)
605 "Invoke w3m on the URL in its current window, or at least a different one.
606 If NEW-SESSION-P, start a new session."
607 (interactive "sURL: \nP")
609 (let ((window (selected-window)))
612 (select-window (or (and (not new-session-p)
613 (get-buffer-window "*w3m*"))
615 (if (one-window-p t) (split-window))
617 (w3m-browse-url url new-session-p))
618 (select-window window)))))
620 (defvar mdw-good-url-browsers
623 (w3m . mdw-w3m-browse-url)
625 "List of good browsers for mdw-good-url-browsers.
626 Each item is a browser function name, or a cons (CHECK . FUNC).
627 A symbol FOO stands for (FOO . FOO).")
629 (defun mdw-good-url-browser ()
630 "Return a good URL browser.
631 Trundle the list of such things, finding the first item for which
632 CHECK is fboundp, and returning the correponding FUNC."
633 (let ((bs mdw-good-url-browsers) b check func answer)
634 (while (and bs (not answer))
638 (setq check (car b) func (cdr b))
639 (setq check b func b))
644 (eval-after-load "w3m-search"
648 '(("g" "Google" "http://www.google.co.uk/search?q=%s")
649 ("gd" "Google Directory"
650 "http://www.google.com/search?cat=gwd/Top&q=%s")
651 ("gg" "Google Groups" "http://groups.google.com/groups?q=%s")
652 ("ward" "Ward's wiki" "http://c2.com/cgi/wiki?%s")
653 ("gi" "Images" "http://images.google.com/images?q=%s")
655 "http://metalzone.distorted.org.uk/ftp/pub/mirrors/rfc/rfc%s.txt.gz")
657 "http://en.wikipedia.org/wiki/Special:Search?go=Go&search=%s")
658 ("imdb" "IMDb" "http://www.imdb.com/Find?%s")
659 ("nc-wiki" "nCipher wiki"
660 "http://wiki.ncipher.com/wiki/bin/view/Devel/?topic=%s")
661 ("map" "Google maps" "http://maps.google.co.uk/maps?q=%s&hl=en")
662 ("lp" "Launchpad bug by number"
663 "https://bugs.launchpad.net/bugs/%s")
664 ("lppkg" "Launchpad bugs by package"
665 "https://bugs.launchpad.net/%s")
667 "http://social.msdn.microsoft.com/Search/en-GB/?query=%s&ac=8")
668 ("debbug" "Debian bug by number"
669 "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s")
670 ("debbugpkg" "Debian bugs by package"
671 "http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=%s")
672 ("ljlogin" "LJ login" "http://www.livejournal.com/login.bml")))
673 (add-to-list 'w3m-search-engine-alist
674 (list (cadr item) (caddr item) nil))
675 (add-to-list 'w3m-uri-replace-alist
676 (list (concat "\\`" (car item) ":")
677 'w3m-search-uri-replace
680 ;;;--------------------------------------------------------------------------
681 ;;; Paragraph filling.
685 (defvar mdw-fill-prefix nil
686 "*Used by `mdw-line-prefix' and `mdw-fill-paragraph'.
687 If there's no fill prefix currently set (by the `fill-prefix'
688 variable) and there's a match from one of the regexps here, it
689 gets used to set the fill-prefix for the current operation.
691 The variable is a list of items of the form `REGEXP . PREFIX'; if
692 the REGEXP matches, the PREFIX is used to set the fill prefix.
693 It in turn is a list of things:
695 STRING -- insert a literal string
696 (match . N) -- insert the thing matched by bracketed subexpression N
697 (pad . N) -- a string of whitespace the same width as subexpression N
698 (expr . FORM) -- the result of evaluating FORM")
700 (make-variable-buffer-local 'mdw-fill-prefix)
702 (defvar mdw-hanging-indents
704 "\\([*o+]\\|-[-#]?\\|[0-9]+\\.\\|\\[[0-9]+\\]\\|([a-zA-Z])\\)"
707 "*Standard regexp matching parts of a hanging indent.
708 This is mainly useful in `auto-fill-mode'.")
710 ;; Setting things up.
712 (fset 'mdw-do-auto-fill (symbol-function 'do-auto-fill))
714 ;; Utility functions.
716 (defun mdw-maybe-tabify (s)
717 "Tabify or untabify the string S, according to `indent-tabs-mode'."
718 (let ((tabfun (if indent-tabs-mode #'tabify #'untabify)))
722 (let ((start (point-min)) (end (point-max)))
723 (funcall tabfun (point-min) (point-max))
724 (setq s (buffer-substring (point-min) (1- (point-max)))))))))
726 (defun mdw-examine-fill-prefixes (l)
727 "Given a list of dynamic fill prefixes, pick one which matches
728 context and return the static fill prefix to use. Point must be
729 at the start of a line, and match data must be saved."
731 ((looking-at (car (car l)))
732 (mdw-maybe-tabify (apply #'concat
733 (mapcar #'mdw-do-prefix-match
735 (t (mdw-examine-fill-prefixes (cdr l)))))
737 (defun mdw-maybe-car (p)
738 "If P is a pair, return (car P), otherwise just return P."
739 (if (consp p) (car p) p))
741 (defun mdw-padding (s)
742 "Return a string the same width as S but made entirely from whitespace."
743 (let* ((l (length s)) (i 0) (n (make-string l ? )))
750 (defun mdw-do-prefix-match (m)
751 "Expand a dynamic prefix match element.
752 See `mdw-fill-prefix' for details."
753 (cond ((not (consp m)) (format "%s" m))
754 ((eq (car m) 'match) (match-string (mdw-maybe-car (cdr m))))
755 ((eq (car m) 'pad) (mdw-padding (match-string
756 (mdw-maybe-car (cdr m)))))
757 ((eq (car m) 'eval) (eval (cdr m)))
760 (defun mdw-choose-dynamic-fill-prefix ()
761 "Work out the dynamic fill prefix based on the variable `mdw-fill-prefix'."
762 (cond ((and fill-prefix (not (string= fill-prefix ""))) fill-prefix)
763 ((not mdw-fill-prefix) fill-prefix)
767 (mdw-examine-fill-prefixes mdw-fill-prefix))))))
769 (defun do-auto-fill ()
770 "Handle auto-filling, working out a dynamic fill prefix in the
771 case where there isn't a sensible static one."
772 (let ((fill-prefix (mdw-choose-dynamic-fill-prefix)))
775 (defun mdw-fill-paragraph ()
776 "Fill paragraph, getting a dynamic fill prefix."
778 (let ((fill-prefix (mdw-choose-dynamic-fill-prefix)))
779 (fill-paragraph nil)))
781 (defun mdw-standard-fill-prefix (rx &optional mat)
782 "Set the dynamic fill prefix, handling standard hanging indents and stuff.
783 This is just a short-cut for setting the thing by hand, and by
784 design it doesn't cope with anything approximating a complicated
786 (setq mdw-fill-prefix
787 `((,(concat rx mdw-hanging-indents)
789 (pad . ,(or mat 2))))))
791 ;;;--------------------------------------------------------------------------
792 ;;; Other common declarations.
794 ;; Common mode settings.
796 (defvar mdw-auto-indent t
797 "Whether to indent automatically after a newline.")
799 (defun mdw-whitespace-mode (&optional arg)
800 "Turn on/off whitespace mode, but don't highlight trailing space."
802 (when (and (boundp 'whitespace-style)
803 (fboundp 'whitespace-mode))
804 (let ((whitespace-style (remove 'trailing whitespace-style)))
805 (whitespace-mode arg))
806 (setq show-trailing-whitespace whitespace-mode)))
808 (defun mdw-misc-mode-config ()
810 (cond ((eq major-mode 'lisp-mode)
811 (local-set-key "\C-m" 'mdw-indent-newline-and-indent))
812 ((or (eq major-mode 'slime-repl-mode)
813 (eq major-mode 'asm-mode))
816 (local-set-key "\C-m" 'newline-and-indent))))
817 (local-set-key [C-return] 'newline)
818 (make-local-variable 'page-delimiter)
819 (setq page-delimiter "\f\\|^.*-\\{6\\}.*$")
820 (setq comment-column 40)
822 (setq fill-column 77)
823 (setq show-trailing-whitespace t)
824 (mdw-whitespace-mode 1)
825 (and (fboundp 'gtags-mode)
827 (if (fboundp 'hs-minor-mode)
828 (trap (hs-minor-mode t))
829 (outline-minor-mode t))
831 (trap (turn-on-font-lock)))
833 (defun mdw-post-config-mode-hack ()
834 (mdw-whitespace-mode 1))
836 (eval-after-load 'gtags
838 (dolist (key '([mouse-2] [mouse-3]))
839 (define-key gtags-mode-map key nil))
840 (define-key gtags-mode-map [C-S-mouse-2] 'gtags-find-tag-by-event)
841 (define-key gtags-select-mode-map [C-S-mouse-2]
842 'gtags-select-tag-by-event)
843 (dolist (map (list gtags-mode-map gtags-select-mode-map))
844 (define-key map [C-S-mouse-3] 'gtags-pop-stack))))
846 ;; Backup file handling.
848 (defvar mdw-backup-disable-regexps nil
849 "*List of regular expressions: if a file name matches any of
850 these then the file is not backed up.")
852 (defun mdw-backup-enable-predicate (name)
853 "[mdw]'s default backup predicate.
854 Allows a backup if the standard predicate would allow it, and it
855 doesn't match any of the regular expressions in
856 `mdw-backup-disable-regexps'."
857 (and (normal-backup-enable-predicate name)
858 (let ((answer t) (list mdw-backup-disable-regexps))
861 (if (string-match (car list) name)
863 (setq list (cdr list)))
865 (setq backup-enable-predicate 'mdw-backup-enable-predicate)
869 (defun mdw-last-one-out-turn-off-the-lights (frame)
870 "Disconnect from an X display if this was the last frame on that display."
871 (let ((frame-display (frame-parameter frame 'display)))
872 (when (and frame-display
873 (eq window-system 'x)
874 (not (some (lambda (fr)
875 (and (not (eq fr frame))
876 (string= (frame-parameter fr 'display)
879 (run-with-idle-timer 0 nil #'x-close-connection frame-display))))
880 (add-hook 'delete-frame-functions 'mdw-last-one-out-turn-off-the-lights)
882 ;;;--------------------------------------------------------------------------
885 (defvar mdw-point-overlay
886 (let ((ov (make-overlay 0 0))
888 (overlay-put ov 'priority 2)
889 (put-text-property 0 1 'display '(left-fringe vertical-bar) s)
890 (overlay-put ov 'before-string s)
893 "An overlay used for showing where point is in the selected window.")
895 (defun mdw-remove-point-overlay ()
896 "Remove the current-point overlay."
897 (delete-overlay mdw-point-overlay))
899 (defun mdw-update-point-overlay ()
900 "Mark the current point position with an overlay."
901 (if (not mdw-point-overlay-mode)
902 (mdw-remove-point-overlay)
903 (overlay-put mdw-point-overlay 'window (selected-window))
905 (move-overlay mdw-point-overlay
906 (point) (1+ (point)) (current-buffer))
907 (move-overlay mdw-point-overlay
908 (1- (point)) (point) (current-buffer)))))
910 (defvar mdw-point-overlay-buffers nil
911 "List of buffers using `mdw-point-overlay-mode'.")
913 (define-minor-mode mdw-point-overlay-mode
914 "Indicate current line with an overlay."
916 (let ((buffer (current-buffer)))
917 (setq mdw-point-overlay-buffers
918 (mapcan (lambda (buf)
919 (if (and (buffer-live-p buf)
920 (not (eq buf buffer)))
922 mdw-point-overlay-buffers))
923 (if mdw-point-overlay-mode
924 (setq mdw-point-overlay-buffers
925 (cons buffer mdw-point-overlay-buffers))))
926 (cond (mdw-point-overlay-buffers
927 (add-hook 'pre-command-hook 'mdw-remove-point-overlay)
928 (add-hook 'post-command-hook 'mdw-update-point-overlay))
930 (mdw-remove-point-overlay)
931 (remove-hook 'pre-command-hook 'mdw-remove-point-overlay)
932 (remove-hook 'post-command-hook 'mdw-update-point-overlay))))
934 (define-globalized-minor-mode mdw-global-point-overlay-mode
935 mdw-point-overlay-mode
936 (lambda () (if (not (minibufferp)) (mdw-point-overlay-mode t))))
938 ;;;--------------------------------------------------------------------------
941 (defvar mdw-full-screen-parameters
942 '((menu-bar-lines . 0)
943 ;(vertical-scroll-bars . nil)
945 "Frame parameters to set when making a frame fullscreen.")
947 (defvar mdw-full-screen-save
949 "Extra frame parameters to save when setting fullscreen.")
951 (defun mdw-toggle-full-screen (&optional frame)
952 "Show the FRAME fullscreen."
955 (cond ((frame-parameter frame 'fullscreen)
956 (set-frame-parameter frame 'fullscreen nil)
957 (modify-frame-parameters
959 (or (frame-parameter frame 'mdw-full-screen-saved)
960 (mapcar (lambda (assoc)
961 (assq (car assoc) default-frame-alist))
962 mdw-full-screen-parameters))))
964 (let ((saved (mapcar (lambda (param)
965 (cons param (frame-parameter frame param)))
966 (append (mapcar #'car
967 mdw-full-screen-parameters)
968 mdw-full-screen-save))))
969 (set-frame-parameter frame 'mdw-full-screen-saved saved))
970 (modify-frame-parameters frame mdw-full-screen-parameters)
971 (set-frame-parameter frame 'fullscreen 'fullboth)))))
973 ;;;--------------------------------------------------------------------------
974 ;;; General fontification.
976 (defmacro mdw-define-face (name &rest body)
977 "Define a face, and make sure it's actually set as the definition."
982 (defvar ,name ',name)
983 (put ',name 'face-defface-spec ',body)
984 (face-spec-set ',name ',body nil)))
986 (mdw-define-face default
987 (((type w32)) :family "courier new" :height 85)
988 (((type x)) :family "6x13" :foundry "trad" :height 130)
989 (((type color)) :foreground "white" :background "black")
991 (mdw-define-face fixed-pitch
992 (((type w32)) :family "courier new" :height 85)
993 (((type x)) :family "6x13" :foundry "trad" :height 130)
994 (t :foreground "white" :background "black"))
995 (if (>= emacs-major-version 23)
996 (mdw-define-face variable-pitch
997 (((type x)) :family "sans" :height 100))
998 (mdw-define-face variable-pitch
999 (((type x)) :family "helvetica" :height 90)))
1000 (mdw-define-face region
1001 (((type tty) (class color)) :background "blue")
1002 (((type tty) (class mono)) :inverse-video t)
1003 (t :background "grey30"))
1004 (mdw-define-face match
1005 (((type tty) (class color)) :background "blue")
1006 (((type tty) (class mono)) :inverse-video t)
1007 (t :background "blue"))
1008 (mdw-define-face mc/cursor-face
1009 (((type tty) (class mono)) :inverse-video t)
1010 (t :background "red"))
1011 (mdw-define-face minibuffer-prompt
1013 (mdw-define-face mode-line
1014 (((class color)) :foreground "blue" :background "yellow"
1015 :box (:line-width 1 :style released-button))
1016 (t :inverse-video t))
1017 (mdw-define-face mode-line-inactive
1018 (((class color)) :foreground "yellow" :background "blue"
1019 :box (:line-width 1 :style released-button))
1020 (t :inverse-video t))
1021 (mdw-define-face nobreak-space
1023 (t :inherit escape-glyph :underline t))
1024 (mdw-define-face scroll-bar
1025 (t :foreground "black" :background "lightgrey"))
1026 (mdw-define-face fringe
1027 (t :foreground "yellow"))
1028 (mdw-define-face show-paren-match
1029 (((class color)) :background "darkgreen")
1031 (mdw-define-face show-paren-mismatch
1032 (((class color)) :background "red")
1033 (t :inverse-video t))
1034 (mdw-define-face highlight
1035 (((type x) (class color)) :background "DarkSeaGreen4")
1036 (((type tty) (class color)) :background "cyan")
1037 (t :inverse-video t))
1039 (mdw-define-face holiday-face
1040 (t :background "red"))
1041 (mdw-define-face calendar-today-face
1042 (t :foreground "yellow" :weight bold))
1044 (mdw-define-face comint-highlight-prompt
1046 (mdw-define-face comint-highlight-input
1049 (mdw-define-face dired-directory
1050 (t :foreground "cyan" :weight bold))
1051 (mdw-define-face dired-symlink
1052 (t :foreground "cyan"))
1053 (mdw-define-face dired-perm-write
1056 (mdw-define-face trailing-whitespace
1057 (((class color)) :background "red")
1058 (t :inverse-video t))
1059 (mdw-define-face mdw-punct-face
1060 (((type tty)) :foreground "yellow") (t :foreground "burlywood2"))
1061 (mdw-define-face mdw-number-face
1062 (t :foreground "yellow"))
1063 (mdw-define-face mdw-trivial-face)
1064 (mdw-define-face font-lock-function-name-face
1066 (mdw-define-face font-lock-keyword-face
1068 (mdw-define-face font-lock-constant-face
1070 (mdw-define-face font-lock-builtin-face
1072 (mdw-define-face font-lock-type-face
1073 (t :weight bold :slant italic))
1074 (mdw-define-face font-lock-reference-face
1076 (mdw-define-face font-lock-variable-name-face
1078 (mdw-define-face font-lock-comment-delimiter-face
1079 (((class mono)) :weight bold)
1080 (((type tty) (class color)) :foreground "green")
1081 (t :slant italic :foreground "SeaGreen1"))
1082 (mdw-define-face font-lock-comment-face
1083 (((class mono)) :weight bold)
1084 (((type tty) (class color)) :foreground "green")
1085 (t :slant italic :foreground "SeaGreen1"))
1086 (mdw-define-face font-lock-string-face
1087 (((class mono)) :weight bold)
1088 (((class color)) :foreground "SkyBlue1"))
1090 (mdw-define-face message-separator
1091 (t :background "red" :foreground "white" :weight bold))
1092 (mdw-define-face message-cited-text
1093 (default :slant italic)
1094 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1095 (mdw-define-face message-header-cc
1096 (default :weight bold)
1097 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1098 (mdw-define-face message-header-newsgroups
1099 (default :weight bold)
1100 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1101 (mdw-define-face message-header-subject
1102 (default :weight bold)
1103 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1104 (mdw-define-face message-header-to
1105 (default :weight bold)
1106 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1107 (mdw-define-face message-header-xheader
1108 (default :weight bold)
1109 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1110 (mdw-define-face message-header-other
1111 (default :weight bold)
1112 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1113 (mdw-define-face message-header-name
1114 (((type tty)) :foreground "green") (t :foreground "SeaGreen1"))
1115 (mdw-define-face which-func
1118 (mdw-define-face diff-header
1120 (mdw-define-face diff-index
1122 (mdw-define-face diff-file-header
1124 (mdw-define-face diff-hunk-header
1125 (t :foreground "SkyBlue1"))
1126 (mdw-define-face diff-function
1127 (t :foreground "SkyBlue1" :weight bold))
1128 (mdw-define-face diff-header
1129 (t :background "grey10"))
1130 (mdw-define-face diff-added
1131 (t :foreground "green"))
1132 (mdw-define-face diff-removed
1133 (t :foreground "red"))
1134 (mdw-define-face diff-context
1136 (mdw-define-face diff-refine-change
1137 (((class color) (type x)) :background "RoyalBlue4")
1140 (mdw-define-face dylan-header-background
1141 (((class color) (type x)) :background "NavyBlue")
1142 (t :background "blue"))
1144 (mdw-define-face magit-diff-add
1145 (t :foreground "green"))
1146 (mdw-define-face magit-diff-del
1147 (t :foreground "red"))
1148 (mdw-define-face magit-diff-file-header
1150 (mdw-define-face magit-diff-hunk-header
1151 (t :foreground "SkyBlue1"))
1152 (mdw-define-face magit-item-highlight
1153 (((type tty)) :background "blue")
1154 (t :background "DarkSeaGreen4"))
1155 (mdw-define-face magit-log-head-label-remote
1156 (((type tty)) :background "cyan" :foreground "green")
1157 (t :background "grey11" :foreground "DarkSeaGreen2" :box t))
1158 (mdw-define-face magit-log-head-label-local
1159 (((type tty)) :background "cyan" :foreground "yellow")
1160 (t :background "grey11" :foreground "LightSkyBlue1" :box t))
1161 (mdw-define-face magit-log-head-label-tags
1162 (((type tty)) :background "red" :foreground "yellow")
1163 (t :background "LemonChiffon1" :foreground "goldenrod4" :box t))
1164 (mdw-define-face magit-log-graph
1165 (((type tty)) :foreground "magenta")
1166 (t :foreground "grey80"))
1168 (mdw-define-face erc-input-face
1169 (t :foreground "red"))
1171 (mdw-define-face woman-bold
1173 (mdw-define-face woman-italic
1176 (eval-after-load "rst"
1178 (mdw-define-face rst-level-1-face
1179 (t :foreground "SkyBlue1" :weight bold))
1180 (mdw-define-face rst-level-2-face
1181 (t :foreground "SeaGreen1" :weight bold))
1182 (mdw-define-face rst-level-3-face
1184 (mdw-define-face rst-level-4-face
1186 (mdw-define-face rst-level-5-face
1188 (mdw-define-face rst-level-6-face
1191 (mdw-define-face p4-depot-added-face
1192 (t :foreground "green"))
1193 (mdw-define-face p4-depot-branch-op-face
1194 (t :foreground "yellow"))
1195 (mdw-define-face p4-depot-deleted-face
1196 (t :foreground "red"))
1197 (mdw-define-face p4-depot-unmapped-face
1198 (t :foreground "SkyBlue1"))
1199 (mdw-define-face p4-diff-change-face
1200 (t :foreground "yellow"))
1201 (mdw-define-face p4-diff-del-face
1202 (t :foreground "red"))
1203 (mdw-define-face p4-diff-file-face
1204 (t :foreground "SkyBlue1"))
1205 (mdw-define-face p4-diff-head-face
1206 (t :background "grey10"))
1207 (mdw-define-face p4-diff-ins-face
1208 (t :foreground "green"))
1210 (mdw-define-face w3m-anchor-face
1211 (t :foreground "SkyBlue1" :underline t))
1212 (mdw-define-face w3m-arrived-anchor-face
1213 (t :foreground "SkyBlue1" :underline t))
1215 (mdw-define-face whizzy-slice-face
1216 (t :background "grey10"))
1217 (mdw-define-face whizzy-error-face
1218 (t :background "darkred"))
1220 ;; Ellipses used to indicate hidden text (and similar).
1221 (mdw-define-face mdw-ellipsis-face
1222 (((type tty)) :foreground "blue") (t :foreground "grey60"))
1223 (let ((dollar (make-glyph-code ?$ 'mdw-ellipsis-face))
1224 (backslash (make-glyph-code ?\ 'mdw-ellipsis-face))
1225 (dot (make-glyph-code ?. 'mdw-ellipsis-face))
1226 (bar (make-glyph-code ?| mdw-ellipsis-face)))
1227 (set-display-table-slot standard-display-table 0 dollar)
1228 (set-display-table-slot standard-display-table 1 backslash)
1229 (set-display-table-slot standard-display-table 4
1230 (vector dot dot dot))
1231 (set-display-table-slot standard-display-table 5 bar))
1233 ;;;--------------------------------------------------------------------------
1234 ;;; C programming configuration.
1236 ;; Linux kernel hacking.
1238 (defvar linux-c-mode-hook)
1240 (defun linux-c-mode ()
1243 (setq major-mode 'linux-c-mode)
1244 (setq mode-name "Linux C")
1245 (run-hooks 'linux-c-mode-hook))
1247 ;; Make C indentation nice.
1249 (defun mdw-c-lineup-arglist (langelem)
1250 "Hack for DWIMmery in c-lineup-arglist."
1252 (c-block-in-arglist-dwim (c-langelem-2nd-pos c-syntactic-element)))
1254 (c-lineup-arglist langelem)))
1256 (defun mdw-c-indent-extern-mumble (langelem)
1257 "Indent `extern \"...\" {' lines."
1259 (back-to-indentation)
1261 "\\s-*\\<extern\\>\\s-*\"\\([^\\\\\"]+\\|\\.\\)*\"\\s-*{")
1265 (defun mdw-c-style ()
1266 (c-add-style "[mdw] C and C++ style"
1267 '((c-basic-offset . 2)
1268 (comment-column . 40)
1269 (c-class-key . "class")
1270 (c-backslash-column . 72)
1272 (substatement-open . (add 0 c-indent-one-line-block))
1273 (defun-open . (add 0 c-indent-one-line-block))
1274 (arglist-cont-nonempty . mdw-c-lineup-arglist)
1275 (topmost-intro . mdw-c-indent-extern-mumble)
1276 (cpp-define-intro . 0)
1278 (inextern-lang . [0])
1284 (statement-cont . +)
1285 (statement-case-intro . +)))
1288 (defvar mdw-c-comment-fill-prefix
1289 `((,(concat "\\([ \t]*/?\\)"
1292 "\\([A-Za-z]+:[ \t]*\\)?"
1293 mdw-hanging-indents)
1294 (pad . 1) (match . 2) (pad . 3) (pad . 4) (pad . 5)))
1295 "Fill prefix matching C comments (both kinds).")
1297 (defun mdw-fontify-c-and-c++ ()
1299 ;; Fiddle with some syntax codes.
1300 (modify-syntax-entry ?* ". 23")
1301 (modify-syntax-entry ?/ ". 124b")
1302 (modify-syntax-entry ?\n "> b")
1306 (setq c-hanging-comment-ender-p nil)
1307 (setq c-backslash-column 72)
1308 (setq c-label-minimum-indentation 0)
1309 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
1311 ;; Now define things to be fontified.
1312 (make-local-variable 'font-lock-keywords)
1314 (mdw-regexps "and" ;C++
1320 "bool" ;C++, C9X macro
1326 "complex" ;C9X macro, C++ template type
1330 "continue" ;K&R, C89
1331 "defined" ;C89 preprocessor
1338 ;; "entry" ;K&R -- never used
1349 "imaginary" ;C9X macro
1350 "inline" ;C++, C9X, GCC
1362 "register" ;K&R, C89
1363 "reinterpret_cast" ;C++
1382 "unsigned" ;K&R, C89
1387 "wchar_t" ;C++, C89 library type
1394 "_Pragma" ;C9X preprocessor
1397 "__attribute__" ;GCC
1400 "__extension__" ;GCC
1410 (mdw-regexps "false" ;C++, C9X macro
1412 "true" ;C++, C9X macro
1414 (preprocessor-keywords
1415 (mdw-regexps "assert" "define" "elif" "else" "endif" "error"
1416 "ident" "if" "ifdef" "ifndef" "import" "include"
1417 "line" "pragma" "unassert" "undef" "warning"))
1419 (mdw-regexps "class" "defs" "encode" "end" "implementation"
1420 "interface" "private" "protected" "protocol" "public"
1423 (setq font-lock-keywords
1426 ;; Fontify include files as strings.
1427 (list (concat "^[ \t]*\\#[ \t]*"
1428 "\\(include\\|import\\)"
1429 "[ \t]*\\(<[^>]+\\(>\\|\\)\\)")
1430 '(2 font-lock-string-face))
1432 ;; Preprocessor directives are `references'?.
1433 (list (concat "^\\([ \t]*#[ \t]*\\(\\("
1434 preprocessor-keywords
1435 "\\)\\>\\|[0-9]+\\|$\\)\\)")
1436 '(1 font-lock-keyword-face))
1438 ;; Handle the keywords defined above.
1439 (list (concat "@\\<\\(" objc-keywords "\\)\\>")
1440 '(0 font-lock-keyword-face))
1442 (list (concat "\\<\\(" c-keywords "\\)\\>")
1443 '(0 font-lock-keyword-face))
1445 (list (concat "\\<\\(" c-constants "\\)\\>")
1446 '(0 font-lock-variable-name-face))
1448 ;; Handle numbers too.
1450 ;; This looks strange, I know. It corresponds to the
1451 ;; preprocessor's idea of what a number looks like, rather than
1452 ;; anything sensible.
1453 (list (concat "\\(\\<[0-9]\\|\\.[0-9]\\)"
1454 "\\([Ee][+-]\\|[0-9A-Za-z_.]\\)*")
1455 '(0 mdw-number-face))
1457 ;; And anything else is punctuation.
1458 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1459 '(0 mdw-punct-face))))
1461 (mdw-post-config-mode-hack)))
1463 ;;;--------------------------------------------------------------------------
1466 (defun apcalc-mode ()
1469 (setq major-mode 'apcalc-mode)
1470 (setq mode-name "AP Calc")
1471 (run-hooks 'apcalc-mode-hook))
1473 (defun mdw-fontify-apcalc ()
1475 ;; Fiddle with some syntax codes.
1476 (modify-syntax-entry ?* ". 23")
1477 (modify-syntax-entry ?/ ". 14")
1481 (setq c-hanging-comment-ender-p nil)
1482 (setq c-backslash-column 72)
1483 (setq comment-start "/* ")
1484 (setq comment-end " */")
1485 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
1487 ;; Now define things to be fontified.
1488 (make-local-variable 'font-lock-keywords)
1490 (mdw-regexps "break" "case" "cd" "continue" "define" "default"
1491 "do" "else" "exit" "for" "global" "goto" "help" "if"
1492 "local" "mat" "obj" "print" "quit" "read" "return"
1493 "show" "static" "switch" "while" "write")))
1495 (setq font-lock-keywords
1498 ;; Handle the keywords defined above.
1499 (list (concat "\\<\\(" c-keywords "\\)\\>")
1500 '(0 font-lock-keyword-face))
1502 ;; Handle numbers too.
1504 ;; This looks strange, I know. It corresponds to the
1505 ;; preprocessor's idea of what a number looks like, rather than
1506 ;; anything sensible.
1507 (list (concat "\\(\\<[0-9]\\|\\.[0-9]\\)"
1508 "\\([Ee][+-]\\|[0-9A-Za-z_.]\\)*")
1509 '(0 mdw-number-face))
1511 ;; And anything else is punctuation.
1512 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1513 '(0 mdw-punct-face)))))
1515 (mdw-post-config-mode-hack))
1517 ;;;--------------------------------------------------------------------------
1518 ;;; Java programming configuration.
1520 ;; Make indentation nice.
1522 (defun mdw-java-style ()
1523 (c-add-style "[mdw] Java style"
1524 '((c-basic-offset . 2)
1525 (c-offsets-alist (substatement-open . 0)
1530 (statement-case-intro . +)))
1533 ;; Declare Java fontification style.
1535 (defun mdw-fontify-java ()
1539 (setq c-hanging-comment-ender-p nil)
1540 (setq c-backslash-column 72)
1541 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
1543 ;; Now define things to be fontified.
1544 (make-local-variable 'font-lock-keywords)
1545 (let ((java-keywords
1546 (mdw-regexps "abstract" "boolean" "break" "byte" "case" "catch"
1547 "char" "class" "const" "continue" "default" "do"
1548 "double" "else" "extends" "final" "finally" "float"
1549 "for" "goto" "if" "implements" "import" "instanceof"
1550 "int" "interface" "long" "native" "new" "package"
1551 "private" "protected" "public" "return" "short"
1552 "static" "switch" "synchronized" "throw" "throws"
1553 "transient" "try" "void" "volatile" "while"))
1556 (mdw-regexps "false" "null" "super" "this" "true")))
1558 (setq font-lock-keywords
1561 ;; Handle the keywords defined above.
1562 (list (concat "\\<\\(" java-keywords "\\)\\>")
1563 '(0 font-lock-keyword-face))
1565 ;; Handle the magic constants defined above.
1566 (list (concat "\\<\\(" java-constants "\\)\\>")
1567 '(0 font-lock-variable-name-face))
1569 ;; Handle numbers too.
1571 ;; The following isn't quite right, but it's close enough.
1572 (list (concat "\\<\\("
1573 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
1574 "[0-9]+\\(\\.[0-9]*\\|\\)"
1575 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
1577 '(0 mdw-number-face))
1579 ;; And anything else is punctuation.
1580 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1581 '(0 mdw-punct-face)))))
1583 (mdw-post-config-mode-hack))
1585 ;;;--------------------------------------------------------------------------
1586 ;;; Javascript programming configuration.
1588 (defun mdw-javascript-style ()
1589 (setq js-indent-level 2)
1590 (setq js-expr-indent-offset 0))
1592 (defun mdw-fontify-javascript ()
1595 (mdw-javascript-style)
1596 (setq js-auto-indent-flag t)
1598 ;; Now define things to be fontified.
1599 (make-local-variable 'font-lock-keywords)
1600 (let ((javascript-keywords
1601 (mdw-regexps "abstract" "boolean" "break" "byte" "case" "catch"
1602 "char" "class" "const" "continue" "debugger" "default"
1603 "delete" "do" "double" "else" "enum" "export" "extends"
1604 "final" "finally" "float" "for" "function" "goto" "if"
1605 "implements" "import" "in" "instanceof" "int"
1606 "interface" "let" "long" "native" "new" "package"
1607 "private" "protected" "public" "return" "short"
1608 "static" "super" "switch" "synchronized" "throw"
1609 "throws" "transient" "try" "typeof" "var" "void"
1610 "volatile" "while" "with" "yield"
1612 "boolean" "byte" "char" "double" "float" "int" "long"
1614 (javascript-constants
1615 (mdw-regexps "false" "null" "undefined" "Infinity" "NaN" "true"
1616 "arguments" "this")))
1618 (setq font-lock-keywords
1621 ;; Handle the keywords defined above.
1622 (list (concat "\\_<\\(" javascript-keywords "\\)\\_>")
1623 '(0 font-lock-keyword-face))
1625 ;; Handle the predefined constants defined above.
1626 (list (concat "\\_<\\(" javascript-constants "\\)\\_>")
1627 '(0 font-lock-variable-name-face))
1629 ;; Handle numbers too.
1631 ;; The following isn't quite right, but it's close enough.
1632 (list (concat "\\_<\\("
1633 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
1634 "[0-9]+\\(\\.[0-9]*\\|\\)"
1635 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
1637 '(0 mdw-number-face))
1639 ;; And anything else is punctuation.
1640 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1641 '(0 mdw-punct-face)))))
1643 (mdw-post-config-mode-hack))
1645 ;;;--------------------------------------------------------------------------
1646 ;;; Scala programming configuration.
1648 (defun mdw-fontify-scala ()
1651 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
1653 ;; Define things to be fontified.
1654 (make-local-variable 'font-lock-keywords)
1655 (let ((scala-keywords
1656 (mdw-regexps "abstract" "case" "catch" "class" "def" "do" "else"
1657 "extends" "final" "finally" "for" "forSome" "if"
1658 "implicit" "import" "lazy" "match" "new" "object"
1659 "override" "package" "private" "protected" "return"
1660 "sealed" "throw" "trait" "try" "type" "val"
1661 "var" "while" "with" "yield"))
1663 (mdw-regexps "false" "null" "super" "this" "true"))
1664 (punctuation "[-!%^&*=+:@#~/?\\|`]"))
1666 (setq font-lock-keywords
1669 ;; Magical identifiers between backticks.
1670 (list (concat "`\\([^`]+\\)`")
1671 '(1 font-lock-variable-name-face))
1673 ;; Handle the keywords defined above.
1674 (list (concat "\\_<\\(" scala-keywords "\\)\\_>")
1675 '(0 font-lock-keyword-face))
1677 ;; Handle the constants defined above.
1678 (list (concat "\\_<\\(" scala-constants "\\)\\_>")
1679 '(0 font-lock-variable-name-face))
1681 ;; Magical identifiers between backticks.
1682 (list (concat "`\\([^`]+\\)`")
1683 '(1 font-lock-variable-name-face))
1685 ;; Handle numbers too.
1687 ;; As usual, not quite right.
1688 (list (concat "\\_<\\("
1689 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
1690 "[0-9]+\\(\\.[0-9]*\\|\\)"
1691 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
1693 '(0 mdw-number-face))
1695 ;; Identifiers with trailing operators.
1696 (list (concat "_\\(" punctuation "\\)+")
1697 '(0 mdw-trivial-face))
1699 ;; And everything else is punctuation.
1700 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1701 '(0 mdw-punct-face)))
1703 font-lock-syntactic-keywords
1706 ;; Single quotes around characters. But not when used to quote
1707 ;; symbol names. Ugh.
1708 (list (concat "\\('\\)"
1710 "\\|" "\\\\" "\\(" "\\\\\\\\" "\\)*"
1711 "u+" "[0-9a-fA-F]\\{4\\}"
1712 "\\|" "\\\\" "[0-7]\\{1,3\\}"
1713 "\\|" "\\\\" "." "\\)"
1718 (mdw-post-config-mode-hack))
1720 ;;;--------------------------------------------------------------------------
1721 ;;; C# programming configuration.
1723 ;; Make indentation nice.
1725 (defun mdw-csharp-style ()
1726 (c-add-style "[mdw] C# style"
1727 '((c-basic-offset . 2)
1728 (c-offsets-alist (substatement-open . 0)
1733 (statement-case-intro . +)))
1736 ;; Declare C# fontification style.
1738 (defun mdw-fontify-csharp ()
1742 (setq c-hanging-comment-ender-p nil)
1743 (setq c-backslash-column 72)
1744 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
1746 ;; Now define things to be fontified.
1747 (make-local-variable 'font-lock-keywords)
1748 (let ((csharp-keywords
1749 (mdw-regexps "abstract" "as" "bool" "break" "byte" "case" "catch"
1750 "char" "checked" "class" "const" "continue" "decimal"
1751 "default" "delegate" "do" "double" "else" "enum"
1752 "event" "explicit" "extern" "finally" "fixed" "float"
1753 "for" "foreach" "goto" "if" "implicit" "in" "int"
1754 "interface" "internal" "is" "lock" "long" "namespace"
1755 "new" "object" "operator" "out" "override" "params"
1756 "private" "protected" "public" "readonly" "ref"
1757 "return" "sbyte" "sealed" "short" "sizeof"
1758 "stackalloc" "static" "string" "struct" "switch"
1759 "throw" "try" "typeof" "uint" "ulong" "unchecked"
1760 "unsafe" "ushort" "using" "virtual" "void" "volatile"
1764 (mdw-regexps "base" "false" "null" "this" "true")))
1766 (setq font-lock-keywords
1769 ;; Handle the keywords defined above.
1770 (list (concat "\\<\\(" csharp-keywords "\\)\\>")
1771 '(0 font-lock-keyword-face))
1773 ;; Handle the magic constants defined above.
1774 (list (concat "\\<\\(" csharp-constants "\\)\\>")
1775 '(0 font-lock-variable-name-face))
1777 ;; Handle numbers too.
1779 ;; The following isn't quite right, but it's close enough.
1780 (list (concat "\\<\\("
1781 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
1782 "[0-9]+\\(\\.[0-9]*\\|\\)"
1783 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
1785 '(0 mdw-number-face))
1787 ;; And anything else is punctuation.
1788 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1789 '(0 mdw-punct-face)))))
1791 (mdw-post-config-mode-hack))
1793 (define-derived-mode csharp-mode java-mode "C#"
1794 "Major mode for editing C# code.")
1796 ;;;--------------------------------------------------------------------------
1797 ;;; F# programming configuration.
1799 (setq fsharp-indent-offset 2)
1801 (defun mdw-fontify-fsharp ()
1803 (let ((punct "=<>+-*/|&%!@?"))
1805 ((>= i (length punct)))
1806 (modify-syntax-entry (aref punct i) ".")))
1808 (modify-syntax-entry ?_ "_")
1809 (modify-syntax-entry ?( "(")
1810 (modify-syntax-entry ?) ")")
1812 (setq indent-tabs-mode nil)
1814 (let ((fsharp-keywords
1815 (mdw-regexps "abstract" "and" "as" "assert" "atomic"
1817 "checked" "class" "component" "const" "constraint"
1818 "constructor" "continue"
1819 "default" "delegate" "do" "done" "downcast" "downto"
1820 "eager" "elif" "else" "end" "exception" "extern"
1821 "finally" "fixed" "for" "fori" "fun" "function"
1824 "if" "in" "include" "inherit" "inline" "interface"
1827 "match" "measure" "member" "method" "mixin" "module"
1830 "object" "of" "open" "or" "override"
1831 "parallel" "params" "private" "process" "protected"
1833 "rec" "recursive" "return"
1834 "sealed" "sig" "static" "struct"
1835 "tailcall" "then" "to" "trait" "try" "type"
1837 "val" "virtual" "void" "volatile"
1838 "when" "while" "with"
1842 (mdw-regexps "asr" "land" "lor" "lsl" "lsr" "lxor" "mod"
1843 "base" "false" "null" "true"))
1846 (mdw-regexps "do" "let" "return" "use" "yield"))
1848 (preprocessor-keywords
1849 (mdw-regexps "if" "indent" "else" "endif")))
1851 (setq font-lock-keywords
1852 (list (list (concat "\\(^\\|[^\"]\\)"
1855 "\\(" "[^)*]" "[^*]*" "\\*+" "\\)*"
1860 '(2 font-lock-comment-face))
1862 (list (concat "'" "\\("
1865 "\\|" "[0-9][0-9][0-9]"
1866 "\\|" "u" "[0-9a-fA-F]\\{4\\}"
1867 "\\|" "U" "[0-9a-fA-F]\\{8\\}"
1873 "\\(" "\\\\" "\\(.\\|\n\\)"
1876 '(0 font-lock-string-face))
1878 (list (concat "\\_<\\(" bang-keywords "\\)!" "\\|"
1879 "^#[ \t]*\\(" preprocessor-keywords "\\)\\_>"
1881 "\\_<\\(" fsharp-keywords "\\)\\_>")
1882 '(0 font-lock-keyword-face))
1883 (list (concat "\\<\\(" fsharp-builtins "\\)\\_>")
1884 '(0 font-lock-variable-name-face))
1886 (list (concat "\\_<"
1887 "\\(" "0[bB][01]+" "\\|"
1889 "0[xX][0-9a-fA-F]+" "\\)"
1890 "\\(" "lf\\|LF" "\\|"
1891 "[uU]?[ysnlL]?" "\\)"
1898 "\\([eE][-+]?[0-9]+\\)?"
1903 '(0 mdw-number-face))
1905 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1906 '(0 mdw-punct-face)))))
1908 (mdw-post-config-mode-hack))
1910 (defun mdw-fontify-inferior-fsharp ()
1911 (mdw-fontify-fsharp)
1912 (setq font-lock-keywords
1913 (append (list (list "^[#-]" '(0 font-lock-comment-face))
1914 (list "^>" '(0 font-lock-keyword-face)))
1915 font-lock-keywords)))
1917 ;;;--------------------------------------------------------------------------
1918 ;;; Go programming configuration.
1920 (defun mdw-fontify-go ()
1922 (make-local-variable 'font-lock-keywords)
1924 (mdw-regexps "break" "case" "chan" "const" "continue"
1925 "default" "defer" "else" "fallthrough" "for"
1926 "func" "go" "goto" "if" "import"
1927 "interface" "map" "package" "range" "return"
1928 "select" "struct" "switch" "type" "var"))
1930 (mdw-regexps "bool" "byte" "complex64" "complex128" "error"
1931 "float32" "float64" "int" "uint8" "int16" "int32"
1932 "int64" "rune" "string" "uint" "uint8" "uint16"
1933 "uint32" "uint64" "uintptr" "void"
1934 "false" "iota" "nil" "true"
1936 "append" "cap" "copy" "delete" "imag" "len" "make"
1937 "new" "panic" "real" "recover")))
1939 (setq font-lock-keywords
1942 ;; Handle the keywords defined above.
1943 (list (concat "\\<\\(" go-keywords "\\)\\>")
1944 '(0 font-lock-keyword-face))
1945 (list (concat "\\<\\(" go-intrinsics "\\)\\>")
1946 '(0 font-lock-variable-name-face))
1948 ;; Strings and characters.
1950 "\\(" "[^\\']" "\\|"
1952 "\\(" "[abfnrtv\\'\"]" "\\|"
1953 "[0-7]\\{3\\}" "\\|"
1954 "x" "[0-9A-Fa-f]\\{2\\}" "\\|"
1955 "u" "[0-9A-Fa-f]\\{4\\}" "\\|"
1956 "U" "[0-9A-Fa-f]\\{8\\}" "\\)" "\\)"
1960 "\\(" "[^\n\\\"]+" "\\|" "\\\\." "\\)*"
1964 '(0 font-lock-string-face))
1966 ;; Handle numbers too.
1968 ;; The following isn't quite right, but it's close enough.
1969 (list (concat "\\<\\("
1970 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
1971 "[0-9]+\\(\\.[0-9]*\\|\\)"
1972 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)")
1973 '(0 mdw-number-face))
1975 ;; And anything else is punctuation.
1976 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
1977 '(0 mdw-punct-face)))))
1979 (mdw-post-config-mode-hack))
1981 ;;;--------------------------------------------------------------------------
1982 ;;; Awk programming configuration.
1984 ;; Make Awk indentation nice.
1986 (defun mdw-awk-style ()
1987 (c-add-style "[mdw] Awk style"
1988 '((c-basic-offset . 2)
1989 (c-offsets-alist (substatement-open . 0)
1990 (statement-cont . 0)
1991 (statement-case-intro . +)))
1994 ;; Declare Awk fontification style.
1996 (defun mdw-fontify-awk ()
1998 ;; Miscellaneous fiddling.
2000 (setq c-backslash-column 72)
2001 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2003 ;; Now define things to be fontified.
2004 (make-local-variable 'font-lock-keywords)
2006 (mdw-regexps "BEGIN" "END" "ARGC" "ARGIND" "ARGV" "CONVFMT"
2007 "ENVIRON" "ERRNO" "FIELDWIDTHS" "FILENAME" "FNR"
2008 "FS" "IGNORECASE" "NF" "NR" "OFMT" "OFS" "ORS" "RS"
2009 "RSTART" "RLENGTH" "RT" "SUBSEP"
2010 "atan2" "break" "close" "continue" "cos" "delete"
2011 "do" "else" "exit" "exp" "fflush" "file" "for" "func"
2012 "function" "gensub" "getline" "gsub" "if" "in"
2013 "index" "int" "length" "log" "match" "next" "rand"
2014 "return" "print" "printf" "sin" "split" "sprintf"
2015 "sqrt" "srand" "strftime" "sub" "substr" "system"
2016 "systime" "tolower" "toupper" "while")))
2018 (setq font-lock-keywords
2021 ;; Handle the keywords defined above.
2022 (list (concat "\\<\\(" c-keywords "\\)\\>")
2023 '(0 font-lock-keyword-face))
2025 ;; Handle numbers too.
2027 ;; The following isn't quite right, but it's close enough.
2028 (list (concat "\\<\\("
2029 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2030 "[0-9]+\\(\\.[0-9]*\\|\\)"
2031 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2033 '(0 mdw-number-face))
2035 ;; And anything else is punctuation.
2036 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2037 '(0 mdw-punct-face)))))
2039 (mdw-post-config-mode-hack))
2041 ;;;--------------------------------------------------------------------------
2042 ;;; Perl programming style.
2044 ;; Perl indentation style.
2046 (setq cperl-indent-level 2)
2047 (setq cperl-continued-statement-offset 2)
2048 (setq cperl-continued-brace-offset 0)
2049 (setq cperl-brace-offset -2)
2050 (setq cperl-brace-imaginary-offset 0)
2051 (setq cperl-label-offset 0)
2053 ;; Define perl fontification style.
2055 (defun mdw-fontify-perl ()
2057 ;; Miscellaneous fiddling.
2058 (modify-syntax-entry ?$ "\\")
2059 (modify-syntax-entry ?$ "\\" font-lock-syntax-table)
2060 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2062 ;; Now define fontification things.
2063 (make-local-variable 'font-lock-keywords)
2064 (let ((perl-keywords
2065 (mdw-regexps "and" "break" "cmp" "continue" "do" "else" "elsif" "eq"
2066 "for" "foreach" "ge" "given" "gt" "goto" "if"
2067 "last" "le" "lt" "local" "my" "ne" "next" "or"
2068 "our" "package" "redo" "require" "return" "sub"
2069 "undef" "unless" "until" "use" "when" "while")))
2071 (setq font-lock-keywords
2074 ;; Set up the keywords defined above.
2075 (list (concat "\\<\\(" perl-keywords "\\)\\>")
2076 '(0 font-lock-keyword-face))
2078 ;; At least numbers are simpler than C.
2079 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
2080 "\\<[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
2081 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
2082 '(0 mdw-number-face))
2084 ;; And anything else is punctuation.
2085 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2086 '(0 mdw-punct-face)))))
2088 (mdw-post-config-mode-hack))
2090 (defun perl-number-tests (&optional arg)
2091 "Assign consecutive numbers to lines containing `#t'. With ARG,
2092 strip numbers instead."
2095 (goto-char (point-min))
2096 (let ((i 0) (fmt (if arg "" " %4d")))
2097 (while (search-forward "#t" nil t)
2098 (delete-region (point) (line-end-position))
2100 (insert (format fmt i)))
2101 (goto-char (point-min))
2102 (if (re-search-forward "\\(tests\\s-*=>\\s-*\\)\\w*" nil t)
2103 (replace-match (format "\\1%d" i))))))
2105 ;;;--------------------------------------------------------------------------
2106 ;;; Python programming style.
2108 (defun mdw-fontify-pythonic (keywords)
2110 ;; Miscellaneous fiddling.
2111 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2112 (setq indent-tabs-mode nil)
2114 ;; Now define fontification things.
2115 (make-local-variable 'font-lock-keywords)
2116 (setq font-lock-keywords
2119 ;; Set up the keywords defined above.
2120 (list (concat "\\_<\\(" keywords "\\)\\_>")
2121 '(0 font-lock-keyword-face))
2123 ;; At least numbers are simpler than C.
2124 (list (concat "\\_<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
2125 "\\_<[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
2126 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|[lL]\\|\\)")
2127 '(0 mdw-number-face))
2129 ;; And anything else is punctuation.
2130 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2131 '(0 mdw-punct-face))))
2133 (mdw-post-config-mode-hack))
2135 ;; Define Python fontification styles.
2137 (defun mdw-fontify-python ()
2138 (mdw-fontify-pythonic
2139 (mdw-regexps "and" "as" "assert" "break" "class" "continue" "def"
2140 "del" "elif" "else" "except" "exec" "finally" "for"
2141 "from" "global" "if" "import" "in" "is" "lambda"
2142 "not" "or" "pass" "print" "raise" "return" "try"
2143 "while" "with" "yield")))
2145 (defun mdw-fontify-pyrex ()
2146 (mdw-fontify-pythonic
2147 (mdw-regexps "and" "as" "assert" "break" "cdef" "class" "continue"
2148 "ctypedef" "def" "del" "elif" "else" "except" "exec"
2149 "extern" "finally" "for" "from" "global" "if"
2150 "import" "in" "is" "lambda" "not" "or" "pass" "print"
2151 "raise" "return" "struct" "try" "while" "with"
2154 ;;;--------------------------------------------------------------------------
2155 ;;; Icon programming style.
2157 ;; Icon indentation style.
2159 (setq icon-brace-offset 0
2160 icon-continued-brace-offset 0
2161 icon-continued-statement-offset 2
2162 icon-indent-level 2)
2164 ;; Define Icon fontification style.
2166 (defun mdw-fontify-icon ()
2168 ;; Miscellaneous fiddling.
2169 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2171 ;; Now define fontification things.
2172 (make-local-variable 'font-lock-keywords)
2173 (let ((icon-keywords
2174 (mdw-regexps "break" "by" "case" "create" "default" "do" "else"
2175 "end" "every" "fail" "global" "if" "initial"
2176 "invocable" "link" "local" "next" "not" "of"
2177 "procedure" "record" "repeat" "return" "static"
2178 "suspend" "then" "to" "until" "while"))
2179 (preprocessor-keywords
2180 (mdw-regexps "define" "else" "endif" "error" "ifdef" "ifndef"
2181 "include" "line" "undef")))
2182 (setq font-lock-keywords
2185 ;; Set up the keywords defined above.
2186 (list (concat "\\<\\(" icon-keywords "\\)\\>")
2187 '(0 font-lock-keyword-face))
2189 ;; The things that Icon calls keywords.
2190 (list "&\\sw+\\>" '(0 font-lock-variable-name-face))
2192 ;; At least numbers are simpler than C.
2193 (list (concat "\\<[0-9]+"
2194 "\\([rR][0-9a-zA-Z]+\\|"
2195 "\\.[0-9]+\\([eE][+-]?[0-9]+\\)?\\)\\>\\|"
2196 "\\.[0-9]+\\([eE][+-]?[0-9]+\\)?\\>")
2197 '(0 mdw-number-face))
2200 (list (concat "^[ \t]*$[ \t]*\\<\\("
2201 preprocessor-keywords
2203 '(0 font-lock-keyword-face))
2205 ;; And anything else is punctuation.
2206 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2207 '(0 mdw-punct-face)))))
2209 (mdw-post-config-mode-hack))
2211 ;;;--------------------------------------------------------------------------
2214 (defun mdw-fontify-asm ()
2215 (modify-syntax-entry ?' "\"")
2216 (modify-syntax-entry ?. "w")
2217 (modify-syntax-entry ?\n ">")
2218 (setf fill-prefix nil)
2219 (mdw-standard-fill-prefix "\\([ \t]*;+[ \t]*\\)"))
2221 (defun mdw-asm-set-comment ()
2222 (modify-syntax-entry ?; "."
2224 (modify-syntax-entry asm-comment-char "<b")
2225 (setq comment-start (string asm-comment-char ? )))
2226 (add-hook 'asm-mode-local-variables-hook 'mdw-asm-set-comment)
2227 (put 'asm-comment-char 'safe-local-variable 'characterp)
2229 ;;;--------------------------------------------------------------------------
2230 ;;; TCL configuration.
2232 (defun mdw-fontify-tcl ()
2233 (mapcar #'(lambda (ch) (modify-syntax-entry ch ".")) '(?$))
2234 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2235 (make-local-variable 'font-lock-keywords)
2236 (setq font-lock-keywords
2238 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
2239 "\\<[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
2240 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
2241 '(0 mdw-number-face))
2242 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2243 '(0 mdw-punct-face))))
2244 (mdw-post-config-mode-hack))
2246 ;;;--------------------------------------------------------------------------
2247 ;;; Dylan programming configuration.
2249 (defun mdw-fontify-dylan ()
2251 (make-local-variable 'font-lock-keywords)
2253 ;; Horrors. `dylan-mode' sets the `major-mode' name after calling this
2254 ;; hook, which undoes all of our configuration.
2255 (setq major-mode 'dylan-mode)
2256 (font-lock-set-defaults)
2258 (let* ((word "[-_a-zA-Z!*@<>$%]+")
2259 (dylan-keywords (mdw-regexps
2261 "C-address" "C-callable-wrapper" "C-function"
2262 "C-mapped-subtype" "C-pointer-type" "C-struct"
2263 "C-subtype" "C-union" "C-variable"
2265 "above" "abstract" "afterwards" "all"
2266 "begin" "below" "block" "by"
2267 "case" "class" "cleanup" "constant" "create"
2269 "else" "elseif" "end" "exception" "export"
2270 "finally" "for" "from" "function"
2273 "if" "in" "instance" "interface" "iterate"
2275 "let" "library" "local"
2276 "macro" "method" "module"
2279 "select" "slot" "subclass"
2281 "unless" "until" "use"
2282 "variable" "virtual"
2284 (sharp-keywords (mdw-regexps
2285 "all-keys" "key" "next" "rest" "include"
2287 (setq font-lock-keywords
2288 (list (list (concat "\\<\\(" dylan-keywords
2289 "\\|" "with\\(out\\)?-" word
2291 '(0 font-lock-keyword-face))
2292 (list (concat "\\<" word ":" "\\|"
2293 "#\\(" sharp-keywords "\\)\\>")
2294 '(0 font-lock-variable-name-face))
2296 "\\([-+]\\|\\<\\)[0-9]+" "\\("
2297 "\\(\\.[0-9]+\\)?" "\\([eE][-+][0-9]+\\)?"
2300 "\\|" "\\.[0-9]+" "\\([eE][-+][0-9]+\\)?"
2303 "\\|" "#x[0-9a-zA-Z]+"
2305 '(0 mdw-number-face))
2307 "\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\|"
2308 "\\_<[-+*/=<>:&|]+\\_>"
2310 '(0 mdw-punct-face)))))
2312 (mdw-post-config-mode-hack))
2314 ;;;--------------------------------------------------------------------------
2315 ;;; Algol 68 configuration.
2317 (setq a68-indent-step 2)
2319 (defun mdw-fontify-algol-68 ()
2321 ;; Fix up the syntax table.
2322 (modify-syntax-entry ?# "!" a68-mode-syntax-table)
2323 (dolist (ch '(?- ?+ ?= ?< ?> ?* ?/ ?| ?&))
2324 (modify-syntax-entry ch "." a68-mode-syntax-table))
2326 (make-local-variable 'font-lock-keywords)
2329 (let ((word "COMMENT"))
2330 (do ((regexp (concat "[^" (substring word 0 1) "]+")
2331 (concat regexp "\\|"
2332 (substring word 0 i)
2333 "[^" (substring word i (1+ i)) "]"))
2335 ((>= i (length word)) regexp)))))
2336 (setq font-lock-keywords
2337 (list (list (concat "\\<COMMENT\\>"
2338 "\\(" not-comment "\\)\\{0,5\\}"
2339 "\\(\\'\\|\\<COMMENT\\>\\)")
2340 '(0 font-lock-comment-face))
2341 (list (concat "\\<CO\\>"
2342 "\\([^C]+\\|C[^O]\\)\\{0,5\\}"
2343 "\\($\\|\\<CO\\>\\)")
2344 '(0 font-lock-comment-face))
2345 (list "\\<[A-Z_]+\\>"
2346 '(0 font-lock-keyword-face))
2350 "\\([eE][-+]?[0-9]+\\)?"
2352 '(0 mdw-number-face))
2353 (list "\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/"
2354 '(0 mdw-punct-face)))))
2356 (mdw-post-config-mode-hack))
2358 ;;;--------------------------------------------------------------------------
2359 ;;; REXX configuration.
2361 (defun mdw-rexx-electric-* ()
2366 (defun mdw-rexx-indent-newline-indent ()
2369 (if abbrev-mode (expand-abbrev))
2370 (newline-and-indent))
2372 (defun mdw-fontify-rexx ()
2374 ;; Various bits of fiddling.
2375 (setq mdw-auto-indent nil)
2376 (local-set-key [?\C-m] 'mdw-rexx-indent-newline-indent)
2377 (local-set-key [?*] 'mdw-rexx-electric-*)
2378 (mapcar #'(lambda (ch) (modify-syntax-entry ch "w"))
2380 (mdw-standard-fill-prefix "\\([ \t]*/?\*[ \t]*\\)")
2382 ;; Set up keywords and things for fontification.
2383 (make-local-variable 'font-lock-keywords-case-fold-search)
2384 (setq font-lock-keywords-case-fold-search t)
2386 (setq rexx-indent 2)
2387 (setq rexx-end-indent rexx-indent)
2388 (setq rexx-cont-indent rexx-indent)
2390 (make-local-variable 'font-lock-keywords)
2391 (let ((rexx-keywords
2392 (mdw-regexps "address" "arg" "by" "call" "digits" "do" "drop"
2393 "else" "end" "engineering" "exit" "expose" "for"
2394 "forever" "form" "fuzz" "if" "interpret" "iterate"
2395 "leave" "linein" "name" "nop" "numeric" "off" "on"
2396 "options" "otherwise" "parse" "procedure" "pull"
2397 "push" "queue" "return" "say" "select" "signal"
2398 "scientific" "source" "then" "trace" "to" "until"
2399 "upper" "value" "var" "version" "when" "while"
2402 "abbrev" "abs" "bitand" "bitor" "bitxor" "b2x"
2403 "center" "center" "charin" "charout" "chars"
2404 "compare" "condition" "copies" "c2d" "c2x"
2405 "datatype" "date" "delstr" "delword" "d2c" "d2x"
2406 "errortext" "format" "fuzz" "insert" "lastpos"
2407 "left" "length" "lineout" "lines" "max" "min"
2408 "overlay" "pos" "queued" "random" "reverse" "right"
2409 "sign" "sourceline" "space" "stream" "strip"
2410 "substr" "subword" "symbol" "time" "translate"
2411 "trunc" "value" "verify" "word" "wordindex"
2412 "wordlength" "wordpos" "words" "xrange" "x2b" "x2c"
2415 (setq font-lock-keywords
2418 ;; Set up the keywords defined above.
2419 (list (concat "\\<\\(" rexx-keywords "\\)\\>")
2420 '(0 font-lock-keyword-face))
2422 ;; Fontify all symbols the same way.
2423 (list (concat "\\<\\([0-9.][A-Za-z0-9.!?_#@$]*[Ee][+-]?[0-9]+\\|"
2424 "[A-Za-z0-9.!?_#@$]+\\)")
2425 '(0 font-lock-variable-name-face))
2427 ;; And everything else is punctuation.
2428 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2429 '(0 mdw-punct-face)))))
2431 (mdw-post-config-mode-hack))
2433 ;;;--------------------------------------------------------------------------
2434 ;;; Standard ML programming style.
2436 (defun mdw-fontify-sml ()
2438 ;; Make underscore an honorary letter.
2439 (modify-syntax-entry ?' "w")
2442 (mdw-standard-fill-prefix "\\([ \t]*(\*[ \t]*\\)")
2444 ;; Now define fontification things.
2445 (make-local-variable 'font-lock-keywords)
2447 (mdw-regexps "abstype" "and" "andalso" "as"
2450 "else" "end" "eqtype" "exception"
2451 "fn" "fun" "functor"
2453 "if" "in" "include" "infix" "infixr"
2456 "of" "op" "open" "orelse"
2458 "sharing" "sig" "signature" "struct" "structure"
2461 "where" "while" "with" "withtype")))
2463 (setq font-lock-keywords
2466 ;; Set up the keywords defined above.
2467 (list (concat "\\<\\(" sml-keywords "\\)\\>")
2468 '(0 font-lock-keyword-face))
2470 ;; At least numbers are simpler than C.
2471 (list (concat "\\<\\(\\~\\|\\)"
2472 "\\(0\\(\\([wW]\\|\\)[xX][0-9a-fA-F]+\\|"
2474 "\\([0-9]+\\(\\.[0-9]+\\|\\)"
2475 "\\([eE]\\(\\~\\|\\)"
2476 "[0-9]+\\|\\)\\)\\)")
2477 '(0 mdw-number-face))
2479 ;; And anything else is punctuation.
2480 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2481 '(0 mdw-punct-face)))))
2483 (mdw-post-config-mode-hack))
2485 ;;;--------------------------------------------------------------------------
2486 ;;; Haskell configuration.
2488 (defun mdw-fontify-haskell ()
2490 ;; Fiddle with syntax table to get comments right.
2491 (modify-syntax-entry ?' "_")
2492 (modify-syntax-entry ?- ". 12")
2493 (modify-syntax-entry ?\n ">")
2495 ;; Make punctuation be punctuation
2496 (let ((punct "=<>+-*/|&%!@?$.^:#`"))
2498 ((>= i (length punct)))
2499 (modify-syntax-entry (aref punct i) ".")))
2502 (mdw-standard-fill-prefix "\\([ \t]*{?--?[ \t]*\\)")
2504 ;; Fiddle with fontification.
2505 (make-local-variable 'font-lock-keywords)
2506 (let ((haskell-keywords
2508 "case" "ccall" "class"
2509 "data" "default" "deriving" "do"
2513 "if" "import" "in" "infix" "infixl" "infixr" "instance"
2526 (mdw-regexps "ACK" "BEL" "BS" "CAN" "CR" "DC1" "DC2" "DC3" "DC4"
2527 "DEL" "DLE" "EM" "ENQ" "EOT" "ESC" "ETB" "ETX" "FF"
2528 "FS" "GS" "HT" "LF" "NAK" "NUL" "RS" "SI" "SO" "SOH"
2529 "SP" "STX" "SUB" "SYN" "US" "VT")))
2531 (setq font-lock-keywords
2533 (list (concat "{-" "[^-]*" "\\(-+[^-}][^-]*\\)*"
2537 '(0 font-lock-comment-face))
2538 (list (concat "\\_<\\(" haskell-keywords "\\)\\_>")
2539 '(0 font-lock-keyword-face))
2540 (list (concat "'\\("
2544 "\\(" "[abfnrtv\\\"']" "\\|"
2545 "^" "\\(" control-sequences "\\|"
2546 "[]A-Z@[\\^_]" "\\)" "\\|"
2553 '(0 font-lock-string-face))
2554 (list "\\_<[A-Z]\\(\\sw+\\|\\s_+\\)*\\_>"
2555 '(0 font-lock-variable-name-face))
2556 (list (concat "\\_<0\\([xX][0-9a-fA-F]+\\|[oO][0-7]+\\)\\|"
2557 "\\_<[0-9]+\\(\\.[0-9]*\\|\\)"
2558 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)")
2559 '(0 mdw-number-face))
2560 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2561 '(0 mdw-punct-face)))))
2563 (mdw-post-config-mode-hack))
2565 ;;;--------------------------------------------------------------------------
2566 ;;; Erlang configuration.
2568 (setq erlang-electric-commands nil)
2570 (defun mdw-fontify-erlang ()
2573 (mdw-standard-fill-prefix "\\([ \t]*{?%*[ \t]*\\)")
2575 ;; Fiddle with fontification.
2576 (make-local-variable 'font-lock-keywords)
2577 (let ((erlang-keywords
2578 (mdw-regexps "after" "and" "andalso"
2579 "band" "begin" "bnot" "bor" "bsl" "bsr" "bxor"
2580 "case" "catch" "cond"
2581 "div" "end" "fun" "if" "let" "not"
2583 "query" "receive" "rem" "try" "when" "xor")))
2585 (setq font-lock-keywords
2588 '(0 font-lock-comment-face))
2589 (list (concat "\\<\\(" erlang-keywords "\\)\\>")
2590 '(0 font-lock-keyword-face))
2591 (list (concat "^-\\sw+\\>")
2592 '(0 font-lock-keyword-face))
2593 (list "\\<[0-9]+\\(\\|#[0-9a-zA-Z]+\\|[eE][+-]?[0-9]+\\)\\>"
2594 '(0 mdw-number-face))
2595 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2596 '(0 mdw-punct-face)))))
2598 (mdw-post-config-mode-hack))
2600 ;;;--------------------------------------------------------------------------
2601 ;;; Texinfo configuration.
2603 (defun mdw-fontify-texinfo ()
2606 (mdw-standard-fill-prefix "\\([ \t]*@c[ \t]+\\)")
2608 ;; Real fontification things.
2609 (make-local-variable 'font-lock-keywords)
2610 (setq font-lock-keywords
2613 ;; Environment names are keywords.
2614 (list "@\\(end\\) *\\([a-zA-Z]*\\)?"
2615 '(2 font-lock-keyword-face))
2617 ;; Unmark escaped magic characters.
2618 (list "\\(@\\)\\([@{}]\\)"
2619 '(1 font-lock-keyword-face)
2620 '(2 font-lock-variable-name-face))
2622 ;; Make sure we get comments properly.
2623 (list "@c\\(\\|omment\\)\\( .*\\)?$"
2624 '(0 font-lock-comment-face))
2626 ;; Command names are keywords.
2627 (list "@\\([^a-zA-Z@]\\|[a-zA-Z@]*\\)"
2628 '(0 font-lock-keyword-face))
2630 ;; Fontify TeX special characters as punctuation.
2632 '(0 mdw-punct-face))))
2634 (mdw-post-config-mode-hack))
2636 ;;;--------------------------------------------------------------------------
2637 ;;; TeX and LaTeX configuration.
2639 (defun mdw-fontify-tex ()
2640 (setq ispell-parser 'tex)
2643 ;; Don't make maths into a string.
2644 (modify-syntax-entry ?$ ".")
2645 (modify-syntax-entry ?$ "." font-lock-syntax-table)
2646 (local-set-key [?$] 'self-insert-command)
2649 (mdw-standard-fill-prefix "\\([ \t]*%+[ \t]*\\)")
2651 ;; Real fontification things.
2652 (make-local-variable 'font-lock-keywords)
2653 (setq font-lock-keywords
2656 ;; Environment names are keywords.
2657 (list (concat "\\\\\\(begin\\|end\\|newenvironment\\)"
2659 '(2 font-lock-keyword-face))
2661 ;; Suspended environment names are keywords too.
2662 (list (concat "\\\\\\(suspend\\|resume\\)\\(\\[[^]]*\\]\\)?"
2664 '(3 font-lock-keyword-face))
2666 ;; Command names are keywords.
2667 (list "\\\\\\([^a-zA-Z@]\\|[a-zA-Z@]*\\)"
2668 '(0 font-lock-keyword-face))
2670 ;; Handle @/.../ for italics.
2671 ;; (list "\\(@/\\)\\([^/]*\\)\\(/\\)"
2672 ;; '(1 font-lock-keyword-face)
2673 ;; '(3 font-lock-keyword-face))
2675 ;; Handle @*...* for boldness.
2676 ;; (list "\\(@\\*\\)\\([^*]*\\)\\(\\*\\)"
2677 ;; '(1 font-lock-keyword-face)
2678 ;; '(3 font-lock-keyword-face))
2680 ;; Handle @`...' for literal syntax things.
2681 ;; (list "\\(@`\\)\\([^']*\\)\\('\\)"
2682 ;; '(1 font-lock-keyword-face)
2683 ;; '(3 font-lock-keyword-face))
2685 ;; Handle @<...> for nonterminals.
2686 ;; (list "\\(@<\\)\\([^>]*\\)\\(>\\)"
2687 ;; '(1 font-lock-keyword-face)
2688 ;; '(3 font-lock-keyword-face))
2690 ;; Handle other @-commands.
2691 ;; (list "@\\([^a-zA-Z]\\|[a-zA-Z]*\\)"
2692 ;; '(0 font-lock-keyword-face))
2694 ;; Make sure we get comments properly.
2696 '(0 font-lock-comment-face))
2698 ;; Fontify TeX special characters as punctuation.
2700 '(0 mdw-punct-face))))
2702 (mdw-post-config-mode-hack))
2704 ;;;--------------------------------------------------------------------------
2707 (defun mdw-sgml-mode ()
2710 (mdw-standard-fill-prefix "")
2711 (make-local-variable 'sgml-delimiters)
2712 (setq sgml-delimiters
2713 '("AND" "&" "COM" "--" "CRO" "&#" "DSC" "]" "DSO" "[" "DTGC" "]"
2714 "DTGO" "[" "ERO" "&" "ETAGO" ":e" "GRPC" ")" "GRPO" "(" "LIT" "\""
2715 "LITA" "'" "MDC" ">" "MDO" "<!" "MINUS" "-" "MSC" "]]" "NESTC" "{"
2716 "NET" "}" "OPT" "?" "OR" "|" "PERO" "%" "PIC" ">" "PIO" "<?"
2717 "PLUS" "+" "REFC" "." "REP" "*" "RNI" "#" "SEQ" "," "STAGO" ":"
2718 "TAGC" "." "VI" "=" "MS-START" "<![" "MS-END" "]]>"
2719 "XML-ECOM" "-->" "XML-PIC" "?>" "XML-SCOM" "<!--" "XML-TAGCE" "/>"
2721 (setq major-mode 'mdw-sgml-mode)
2722 (setq mode-name "[mdw] SGML")
2723 (run-hooks 'mdw-sgml-mode-hook))
2725 ;;;--------------------------------------------------------------------------
2726 ;;; Configuration files.
2728 (defvar mdw-conf-quote-normal nil
2729 "*Control syntax category of quote characters `\"' and `''.
2730 If this is `t', consider quote characters to be normal
2731 punctuation, as for `conf-quote-normal'. If this is `nil' then
2732 leave quote characters as quotes. If this is a list, then
2733 consider the quote characters in the list to be normal
2734 punctuation. If this is a single quote character, then consider
2735 that character only to be normal punctuation.")
2736 (defun mdw-conf-quote-normal-acceptable-value-p (value)
2737 "Is the VALUE is an acceptable value for `mdw-conf-quote-normal'?"
2738 (or (booleanp value)
2739 (every (lambda (v) (memq v '(?\" ?')))
2740 (if (listp value) value (list value)))))
2741 (put 'mdw-conf-quote-normal 'safe-local-variable
2742 'mdw-conf-quote-normal-acceptable-value-p)
2744 (defun mdw-fix-up-quote ()
2745 "Apply the setting of `mdw-conf-quote-normal'."
2746 (let ((flag mdw-conf-quote-normal))
2748 (conf-quote-normal t))
2752 (let ((table (copy-syntax-table (syntax-table))))
2753 (mapc (lambda (ch) (modify-syntax-entry ch "." table))
2754 (if (listp flag) flag (list flag)))
2755 (set-syntax-table table)
2756 (and font-lock-mode (font-lock-fontify-buffer)))))))
2757 (add-hook 'conf-mode-local-variables-hook 'mdw-fix-up-quote t t)
2759 ;;;--------------------------------------------------------------------------
2762 (defun mdw-setup-sh-script-mode ()
2764 ;; Fetch the shell interpreter's name.
2765 (let ((shell-name sh-shell-file))
2767 ;; Try reading the hash-bang line.
2769 (goto-char (point-min))
2770 (if (looking-at "#![ \t]*\\([^ \t\n]*\\)")
2771 (setq shell-name (match-string 1))))
2773 ;; Now try to set the shell.
2775 ;; Don't let `sh-set-shell' bugger up my script.
2776 (let ((executable-set-magic #'(lambda (s &rest r) s)))
2777 (sh-set-shell shell-name)))
2779 ;; Don't insert here-document scaffolding automatically.
2780 (local-set-key "<" 'self-insert-command)
2782 ;; Now enable my keys and the fontification.
2783 (mdw-misc-mode-config)
2785 ;; Set the indentation level correctly.
2786 (setq sh-indentation 2)
2787 (setq sh-basic-offset 2))
2789 (setq sh-shell-file "/bin/sh")
2791 ;; Awful hacking to override the shell detection for particular scripts.
2792 (defmacro define-custom-shell-mode (name shell)
2795 (set (make-local-variable 'sh-shell-file) ,shell)
2797 (define-custom-shell-mode bash-mode "/bin/bash")
2798 (define-custom-shell-mode rc-mode "/usr/bin/rc")
2799 (put 'sh-shell-file 'permanent-local t)
2801 ;; Hack the rc syntax table. Backquotes aren't paired in rc.
2802 (eval-after-load "sh-script"
2803 '(or (assq 'rc sh-mode-syntax-table-input)
2820 (assoc (assq 'rc sh-mode-syntax-table-input)))
2823 (setq sh-mode-syntax-table-input
2824 (cons (cons 'rc frag)
2825 sh-mode-syntax-table-input))))))
2827 ;;;--------------------------------------------------------------------------
2828 ;;; Emacs shell mode.
2830 (defun mdw-eshell-prompt ()
2831 (let ((left "[") (right "]"))
2832 (when (= (user-uid) 0)
2833 (setq left "«" right "»"))
2836 (replace-regexp-in-string "\\..*$" "" (system-name)))
2838 (let* ((pwd (eshell/pwd)) (npwd (length pwd))
2839 (home (expand-file-name "~")) (nhome (length home)))
2840 (if (and (>= npwd nhome)
2842 (= (elt pwd nhome) ?/))
2843 (string= (substring pwd 0 nhome) home))
2844 (concat "~" (substring pwd (length home)))
2847 (setq eshell-prompt-function 'mdw-eshell-prompt)
2848 (setq eshell-prompt-regexp "^\\[[^]>]+\\(\\]\\|>>?\\)")
2850 (defun eshell/e (file) (find-file file) nil)
2851 (defun eshell/ee (file) (find-file-other-window file) nil)
2852 (defun eshell/w3m (url) (w3m-goto-url url) nil)
2854 (mdw-define-face eshell-prompt (t :weight bold))
2855 (mdw-define-face eshell-ls-archive (t :weight bold :foreground "red"))
2856 (mdw-define-face eshell-ls-backup (t :foreground "lightgrey" :slant italic))
2857 (mdw-define-face eshell-ls-product (t :foreground "lightgrey" :slant italic))
2858 (mdw-define-face eshell-ls-clutter (t :foreground "lightgrey" :slant italic))
2859 (mdw-define-face eshell-ls-executable (t :weight bold))
2860 (mdw-define-face eshell-ls-directory (t :foreground "cyan" :weight bold))
2861 (mdw-define-face eshell-ls-readonly (t nil))
2862 (mdw-define-face eshell-ls-symlink (t :foreground "cyan"))
2864 ;;;--------------------------------------------------------------------------
2865 ;;; Messages-file mode.
2867 (defun messages-mode-guts ()
2868 (setq messages-mode-syntax-table (make-syntax-table))
2869 (set-syntax-table messages-mode-syntax-table)
2870 (modify-syntax-entry ?0 "w" messages-mode-syntax-table)
2871 (modify-syntax-entry ?1 "w" messages-mode-syntax-table)
2872 (modify-syntax-entry ?2 "w" messages-mode-syntax-table)
2873 (modify-syntax-entry ?3 "w" messages-mode-syntax-table)
2874 (modify-syntax-entry ?4 "w" messages-mode-syntax-table)
2875 (modify-syntax-entry ?5 "w" messages-mode-syntax-table)
2876 (modify-syntax-entry ?6 "w" messages-mode-syntax-table)
2877 (modify-syntax-entry ?7 "w" messages-mode-syntax-table)
2878 (modify-syntax-entry ?8 "w" messages-mode-syntax-table)
2879 (modify-syntax-entry ?9 "w" messages-mode-syntax-table)
2880 (make-local-variable 'comment-start)
2881 (make-local-variable 'comment-end)
2882 (make-local-variable 'indent-line-function)
2883 (setq indent-line-function 'indent-relative)
2884 (mdw-standard-fill-prefix "\\([ \t]*\\(;\\|/?\\*\\)+[ \t]*\\)")
2885 (make-local-variable 'font-lock-defaults)
2886 (make-local-variable 'messages-mode-keywords)
2888 (mdw-regexps "array" "bitmap" "callback" "docs[ \t]+enum"
2889 "export" "enum" "fixed-octetstring" "flags"
2890 "harmless" "map" "nested" "optional"
2891 "optional-tagged" "package" "primitive"
2892 "primitive-nullfree" "relaxed[ \t]+enum"
2893 "set" "table" "tagged-optional" "union"
2894 "variadic" "vector" "version" "version-tag")))
2895 (setq messages-mode-keywords
2897 (list (concat "\\<\\(" keywords "\\)\\>:")
2898 '(0 font-lock-keyword-face))
2899 '("\\([-a-zA-Z0-9]+:\\)" (0 font-lock-warning-face))
2900 '("\\(\\<[a-z][-_a-zA-Z0-9]*\\)"
2901 (0 font-lock-variable-name-face))
2902 '("\\<\\([0-9]+\\)\\>" (0 mdw-number-face))
2903 '("\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2904 (0 mdw-punct-face)))))
2905 (setq font-lock-defaults
2906 '(messages-mode-keywords nil nil nil nil))
2907 (run-hooks 'messages-file-hook))
2909 (defun messages-mode ()
2912 (setq major-mode 'messages-mode)
2913 (setq mode-name "Messages")
2914 (messages-mode-guts)
2915 (modify-syntax-entry ?# "<" messages-mode-syntax-table)
2916 (modify-syntax-entry ?\n ">" messages-mode-syntax-table)
2917 (setq comment-start "# ")
2918 (setq comment-end "")
2919 (run-hooks 'messages-mode-hook))
2921 (defun cpp-messages-mode ()
2924 (setq major-mode 'cpp-messages-mode)
2925 (setq mode-name "CPP Messages")
2926 (messages-mode-guts)
2927 (modify-syntax-entry ?* ". 23" messages-mode-syntax-table)
2928 (modify-syntax-entry ?/ ". 14" messages-mode-syntax-table)
2929 (setq comment-start "/* ")
2930 (setq comment-end " */")
2931 (let ((preprocessor-keywords
2932 (mdw-regexps "assert" "define" "elif" "else" "endif" "error"
2933 "ident" "if" "ifdef" "ifndef" "import" "include"
2934 "line" "pragma" "unassert" "undef" "warning")))
2935 (setq messages-mode-keywords
2936 (append (list (list (concat "^[ \t]*\\#[ \t]*"
2937 "\\(include\\|import\\)"
2938 "[ \t]*\\(<[^>]+\\(>\\|\\)\\)")
2939 '(2 font-lock-string-face))
2940 (list (concat "^\\([ \t]*#[ \t]*\\(\\("
2941 preprocessor-keywords
2942 "\\)\\>\\|[0-9]+\\|$\\)\\)")
2943 '(1 font-lock-keyword-face)))
2944 messages-mode-keywords)))
2945 (run-hooks 'cpp-messages-mode-hook))
2947 (add-hook 'messages-mode-hook 'mdw-misc-mode-config t)
2948 (add-hook 'cpp-messages-mode-hook 'mdw-misc-mode-config t)
2949 ; (add-hook 'messages-file-hook 'mdw-fontify-messages t)
2951 ;;;--------------------------------------------------------------------------
2952 ;;; Messages-file mode.
2954 (defvar mallow-driver-substitution-face 'mallow-driver-substitution-face
2955 "Face to use for subsittution directives.")
2956 (make-face 'mallow-driver-substitution-face)
2957 (defvar mallow-driver-text-face 'mallow-driver-text-face
2958 "Face to use for body text.")
2959 (make-face 'mallow-driver-text-face)
2961 (defun mallow-driver-mode ()
2964 (setq major-mode 'mallow-driver-mode)
2965 (setq mode-name "Mallow driver")
2966 (setq mallow-driver-mode-syntax-table (make-syntax-table))
2967 (set-syntax-table mallow-driver-mode-syntax-table)
2968 (make-local-variable 'comment-start)
2969 (make-local-variable 'comment-end)
2970 (make-local-variable 'indent-line-function)
2971 (setq indent-line-function 'indent-relative)
2972 (mdw-standard-fill-prefix "\\([ \t]*\\(;\\|/?\\*\\)+[ \t]*\\)")
2973 (make-local-variable 'font-lock-defaults)
2974 (make-local-variable 'mallow-driver-mode-keywords)
2976 (mdw-regexps "each" "divert" "file" "if"
2977 "perl" "set" "string" "type" "write")))
2978 (setq mallow-driver-mode-keywords
2980 (list (concat "^%\\s *\\(}\\|\\(" keywords "\\)\\>\\).*$")
2981 '(0 font-lock-keyword-face))
2982 (list "^%\\s *\\(#.*\\|\\)$"
2983 '(0 font-lock-comment-face))
2985 '(0 font-lock-keyword-face))
2986 (list "^|?\\(.+\\)$" '(1 mallow-driver-text-face))
2988 '(0 mallow-driver-substitution-face t)))))
2989 (setq font-lock-defaults
2990 '(mallow-driver-mode-keywords nil nil nil nil))
2991 (modify-syntax-entry ?\" "_" mallow-driver-mode-syntax-table)
2992 (modify-syntax-entry ?\n ">" mallow-driver-mode-syntax-table)
2993 (setq comment-start "%# ")
2994 (setq comment-end "")
2995 (run-hooks 'mallow-driver-mode-hook))
2997 (add-hook 'mallow-driver-hook 'mdw-misc-mode-config t)
2999 ;;;--------------------------------------------------------------------------
3002 (defun nfast-debug-mode ()
3005 (setq major-mode 'nfast-debug-mode)
3006 (setq mode-name "NFast debug")
3007 (setq messages-mode-syntax-table (make-syntax-table))
3008 (set-syntax-table messages-mode-syntax-table)
3009 (make-local-variable 'font-lock-defaults)
3010 (make-local-variable 'nfast-debug-mode-keywords)
3011 (setq truncate-lines t)
3012 (setq nfast-debug-mode-keywords
3014 '("^\\(NFast_\\(Connect\\|Disconnect\\|Submit\\|Wait\\)\\)"
3015 (0 font-lock-keyword-face))
3016 (list (concat "^[ \t]+\\(\\("
3017 "[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]"
3018 "[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]"
3020 "[0-9a-fA-F]+\\)[ \t]*$")
3021 '(0 mdw-number-face))
3022 '("^[ \t]+\.status=[ \t]+\\<\\(OK\\)\\>"
3023 (1 font-lock-keyword-face))
3024 '("^[ \t]+\.status=[ \t]+\\<\\([a-zA-Z][0-9a-zA-Z]*\\)\\>"
3025 (1 font-lock-warning-face))
3026 '("^[ \t]+\.status[ \t]+\\<\\(zero\\)\\>"
3028 (list (concat "^[ \t]+\\.cmd=[ \t]+"
3029 "\\<\\([a-zA-Z][0-9a-zA-Z]*\\)\\>")
3030 '(1 font-lock-keyword-face))
3031 '("-?\\<\\([0-9]+\\|0x[0-9a-fA-F]+\\)\\>" (0 mdw-number-face))
3032 '("^\\([ \t]+[a-z0-9.]+\\)" (0 font-lock-variable-name-face))
3033 '("\\<\\([a-z][a-z0-9.]+\\)\\>=" (1 font-lock-variable-name-face))
3034 '("\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)" (0 mdw-punct-face))))
3035 (setq font-lock-defaults
3036 '(nfast-debug-mode-keywords nil nil nil nil))
3037 (run-hooks 'nfast-debug-mode-hook))
3039 ;;;--------------------------------------------------------------------------
3040 ;;; Other languages.
3044 (defun mdw-setup-smalltalk ()
3045 (and mdw-auto-indent
3046 (local-set-key "\C-m" 'smalltalk-newline-and-indent))
3047 (make-local-variable 'mdw-auto-indent)
3048 (setq mdw-auto-indent nil)
3049 (local-set-key "\C-i" 'smalltalk-reindent))
3051 (defun mdw-fontify-smalltalk ()
3052 (make-local-variable 'font-lock-keywords)
3053 (setq font-lock-keywords
3055 (list "\\<[A-Z][a-zA-Z0-9]*\\>"
3056 '(0 font-lock-keyword-face))
3057 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
3058 "[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
3059 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
3060 '(0 mdw-number-face))
3061 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
3062 '(0 mdw-punct-face))))
3063 (mdw-post-config-mode-hack))
3067 ;; Unpleasant bodge.
3068 (unless (boundp 'slime-repl-mode-map)
3069 (setq slime-repl-mode-map (make-sparse-keymap)))
3071 (defun mdw-indent-newline-and-indent ()
3073 (indent-for-tab-command)
3074 (newline-and-indent))
3076 (eval-after-load "cl-indent"
3078 (mapc #'(lambda (pair)
3080 'common-lisp-indent-function
3082 '((destructuring-bind . ((&whole 4 &rest 1) 4 &body))
3083 (multiple-value-bind . ((&whole 4 &rest 1) 4 &body))))))
3085 (defun mdw-common-lisp-indent ()
3086 (make-local-variable 'lisp-indent-function)
3087 (setq lisp-indent-function 'common-lisp-indent-function))
3089 (setq lisp-simple-loop-indentation 2
3090 lisp-loop-keyword-indentation 6
3091 lisp-loop-forms-indentation 6)
3093 (defun mdw-fontify-lispy ()
3096 (mdw-standard-fill-prefix "\\([ \t]*;+[ \t]*\\)")
3098 ;; Not much fontification needed.
3099 (make-local-variable 'font-lock-keywords)
3100 (setq font-lock-keywords
3101 (list (list (concat "\\("
3103 "\\(" "[0-9]+/[0-9]+"
3104 "\\|" "\\(" "[0-9]+" "\\(\\.[0-9]*\\)?" "\\|"
3106 "\\([dDeEfFlLsS][-+]?[0-9]+\\)?"
3111 "[0-9A-Fa-f]+" "\\(/[0-9A-Fa-f]+\\)?"
3112 "\\|" "o" "[-+]?" "[0-7]+" "\\(/[0-7]+\\)?"
3113 "\\|" "b" "[-+]?" "[01]+" "\\(/[01]+\\)?"
3114 "\\|" "[0-9]+" "r" "[-+]?"
3115 "[0-9a-zA-Z]+" "\\(/[0-9a-zA-Z]+\\)?"
3118 '(0 mdw-number-face))
3119 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
3120 '(0 mdw-punct-face))))
3122 (mdw-post-config-mode-hack))
3124 (defun comint-send-and-indent ()
3127 (and mdw-auto-indent
3128 (indent-for-tab-command)))
3130 (defun mdw-setup-m4 ()
3132 ;; Inexplicably, Emacs doesn't match braces in m4 mode. This is very
3133 ;; annoying: fix it.
3134 (modify-syntax-entry ?{ "(")
3135 (modify-syntax-entry ?} ")")
3138 (mdw-standard-fill-prefix "\\([ \t]*\\(?:#+\\|\\<dnl\\>\\)[ \t]*\\)"))
3140 ;;;--------------------------------------------------------------------------
3143 (defun mdw-text-mode ()
3144 (setq fill-column 72)
3146 (mdw-standard-fill-prefix
3147 "\\([ \t]*\\([>#|:] ?\\)*[ \t]*\\)" 3)
3150 ;;;--------------------------------------------------------------------------
3151 ;;; Outline and hide/show modes.
3153 (defun mdw-outline-collapse-all ()
3154 "Completely collapse everything in the entire buffer."
3157 (goto-char (point-min))
3158 (while (< (point) (point-max))
3162 (setq hs-hide-comments-when-hiding-all nil)
3164 (defadvice hs-hide-all (after hide-first-comment activate)
3165 (save-excursion (hs-hide-initial-comment-block)))
3167 ;;;--------------------------------------------------------------------------
3170 (defun mdw-sh-mode-setup ()
3171 (local-set-key [?\C-a] 'comint-bol)
3172 (add-hook 'comint-output-filter-functions
3173 'comint-watch-for-password-prompt))
3175 (defun mdw-term-mode-setup ()
3176 (setq term-prompt-regexp shell-prompt-pattern)
3177 (make-local-variable 'mouse-yank-at-point)
3178 (make-local-variable 'transient-mark-mode)
3179 (setq mouse-yank-at-point t)
3183 (defun term-send-meta-right () (interactive) (term-send-raw-string "\e\e[C"))
3184 (defun term-send-meta-left () (interactive) (term-send-raw-string "\e\e[D"))
3185 (defun term-send-ctrl-uscore () (interactive) (term-send-raw-string "\C-_"))
3186 (defun term-send-meta-meta-something ()
3188 (term-send-raw-string "\e\e")
3190 (eval-after-load 'term
3192 (define-key term-raw-map [?\e ?\e] nil)
3193 (define-key term-raw-map [?\e ?\e t] 'term-send-meta-meta-something)
3194 (define-key term-raw-map [?\C-/] 'term-send-ctrl-uscore)
3195 (define-key term-raw-map [M-right] 'term-send-meta-right)
3196 (define-key term-raw-map [?\e ?\M-O ?C] 'term-send-meta-right)
3197 (define-key term-raw-map [M-left] 'term-send-meta-left)
3198 (define-key term-raw-map [?\e ?\M-O ?D] 'term-send-meta-left)))
3200 (defadvice term-exec (before program-args-list compile activate)
3201 "If the PROGRAM argument is a list, interpret it as (PROGRAM . SWITCHES).
3202 This allows you to pass a list of arguments through `ansi-term'."
3203 (let ((program (ad-get-arg 2)))
3206 (ad-set-arg 2 (car program))
3207 (ad-set-arg 4 (cdr program))))))
3210 "Open a terminal containing an ssh session to the HOST."
3211 (interactive "sHost: ")
3212 (ansi-term (list "ssh" host) (format "ssh@%s" host)))
3214 (defvar git-grep-command
3215 "env PAGER=cat git grep --no-color -nH -e "
3216 "*The default command for \\[git-grep].")
3218 (defvar git-grep-history nil)
3220 (defun git-grep (command-args)
3221 "Run `git grep' with user-specified args and collect output in a buffer."
3223 (list (read-shell-command "Run git grep (like this): "
3224 git-grep-command 'git-grep-history)))
3225 (grep command-args))
3227 ;;;--------------------------------------------------------------------------
3228 ;;; Inferior Emacs Lisp.
3230 (setq comint-prompt-read-only t)
3232 (eval-after-load "comint"
3234 (define-key comint-mode-map "\C-w" 'comint-kill-region)
3235 (define-key comint-mode-map [C-S-backspace] 'comint-kill-whole-line)))
3237 (eval-after-load "ielm"
3239 (define-key ielm-map "\C-w" 'comint-kill-region)
3240 (define-key ielm-map [C-S-backspace] 'comint-kill-whole-line)))
3242 ;;;----- That's all, folks --------------------------------------------------
3244 (provide 'dot-emacs)