chiark / gitweb /
el/dot-emacs.el (mdw-fontify-pythonic): Numbers can't contain `_'.
[profile] / el / dot-emacs.el
CommitLineData
502f4699 1;;; -*- mode: emacs-lisp; coding: utf-8 -*-
f617db13 2;;;
f617db13
MW
3;;; Functions and macros for .emacs
4;;;
5;;; (c) 2004 Mark Wooding
6;;;
7
8;;;----- Licensing notice ---------------------------------------------------
9;;;
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.
852cd5fb 14;;;
f617db13
MW
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.
852cd5fb 19;;;
f617db13
MW
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.
23
6132bc01
MW
24;;;--------------------------------------------------------------------------
25;;; Check command-line.
c7a8da49
MW
26
27(defvar mdw-fast-startup nil
28 "Whether .emacs should optimize for rapid startup.
29This may be at the expense of cool features.")
30(let ((probe nil) (next command-line-args))
c7a8da49
MW
31 (while next
32 (cond ((string= (car next) "--mdw-fast-startup")
33 (setq mdw-fast-startup t)
34 (if probe
35 (rplacd probe (cdr next))
36 (setq command-line-args (cdr next))))
37 (t
38 (setq probe next)))
39 (setq next (cdr next))))
40
6132bc01
MW
41;;;--------------------------------------------------------------------------
42;;; Some general utilities.
f617db13 43
417dcddd
MW
44(eval-when-compile
45 (unless (fboundp 'make-regexp)
46 (load "make-regexp"))
47 (require 'cl))
c7a8da49
MW
48
49(defmacro mdw-regexps (&rest list)
50 "Turn a LIST of strings into a single regular expression at compile-time."
9e789ed5
MW
51 (declare (indent nil)
52 (debug 0))
417dcddd 53 `',(make-regexp list))
c7a8da49 54
a1b01eb3
MW
55(defun mdw-wrong ()
56 "This is not the key sequence you're looking for."
57 (interactive)
58 (error "wrong button"))
59
e8ea88ba
MW
60(defun mdw-emacs-version-p (major &optional minor)
61 "Return non-nil if the running Emacs is at least version MAJOR.MINOR."
62 (or (> emacs-major-version major)
63 (and (= emacs-major-version major)
64 (>= emacs-minor-version (or minor 0)))))
65
6132bc01 66;; Some error trapping.
f617db13
MW
67;;
68;; If individual bits of this file go tits-up, we don't particularly want
69;; the whole lot to stop right there and then, because it's bloody annoying.
70
71(defmacro trap (&rest forms)
72 "Execute FORMS without allowing errors to propagate outside."
9e789ed5
MW
73 (declare (indent 0)
74 (debug t))
f617db13
MW
75 `(condition-case err
76 ,(if (cdr forms) (cons 'progn forms) (car forms))
8df912e4
MW
77 (error (message "Error (trapped): %s in %s"
78 (error-message-string err)
79 ',forms))))
f617db13 80
6132bc01 81;; Configuration reading.
f141fe0f
MW
82
83(defvar mdw-config nil)
84(defun mdw-config (sym)
85 "Read the configuration variable named SYM."
86 (unless mdw-config
daff679f
MW
87 (setq mdw-config
88 (flet ((replace (what with)
89 (goto-char (point-min))
90 (while (re-search-forward what nil t)
91 (replace-match with t))))
92 (with-temp-buffer
93 (insert-file-contents "~/.mdw.conf")
94 (replace "^[ \t]*\\(#.*\\|\\)\n" "")
95 (replace (concat "^[ \t]*"
96 "\\([-a-zA-Z0-9_.]*\\)"
97 "[ \t]*=[ \t]*"
98 "\\(.*[^ \t\n]\\|\\)"
99 "[ \t]**\\(\n\\|$\\)")
100 "(\\1 . \"\\2\")\n")
101 (car (read-from-string
102 (concat "(" (buffer-string) ")")))))))
f141fe0f
MW
103 (cdr (assq sym mdw-config)))
104
c7203018
MW
105;; Width configuration.
106
107(defvar mdw-column-width
108 (string-to-number (or (mdw-config 'emacs-width) "77"))
109 "Width of Emacs columns.")
110(defvar mdw-text-width mdw-column-width
111 "Expected width of text within columns.")
112(put 'mdw-text-width 'safe-local-variable 'integerp)
113
18bb0f77
MW
114;; Local variables hacking.
115
116(defun run-local-vars-mode-hook ()
117 "Run a hook for the major-mode after local variables have been processed."
118 (run-hooks (intern (concat (symbol-name major-mode)
119 "-local-variables-hook"))))
120(add-hook 'hack-local-variables-hook 'run-local-vars-mode-hook)
121
6132bc01 122;; Set up the load path convincingly.
eac7b622
MW
123
124(dolist (dir (append (and (boundp 'debian-emacs-flavor)
125 (list (concat "/usr/share/"
126 (symbol-name debian-emacs-flavor)
127 "/site-lisp")))))
128 (dolist (sub (directory-files dir t))
129 (when (and (file-accessible-directory-p sub)
130 (not (member sub load-path)))
131 (setq load-path (nconc load-path (list sub))))))
132
6132bc01 133;; Is an Emacs library available?
cb6e2cd1
MW
134
135(defun library-exists-p (name)
6132bc01
MW
136 "Return non-nil if NAME is an available library.
137Return non-nil if NAME.el (or NAME.elc) somewhere on the Emacs
138load path. The non-nil value is the filename we found for the
139library."
cb6e2cd1
MW
140 (let ((path load-path) elt (foundp nil))
141 (while (and path (not foundp))
142 (setq elt (car path))
143 (setq path (cdr path))
144 (setq foundp (or (let ((file (concat elt "/" name ".elc")))
145 (and (file-exists-p file) file))
146 (let ((file (concat elt "/" name ".el")))
147 (and (file-exists-p file) file)))))
148 foundp))
149
150(defun maybe-autoload (symbol file &optional docstring interactivep type)
151 "Set an autoload if the file actually exists."
152 (and (library-exists-p file)
153 (autoload symbol file docstring interactivep type)))
154
8183de08
MW
155(defun mdw-kick-menu-bar (&optional frame)
156 "Regenerate FRAME's menu bar so it doesn't have empty menus."
157 (interactive)
158 (unless frame (setq frame (selected-frame)))
159 (let ((old (frame-parameter frame 'menu-bar-lines)))
160 (set-frame-parameter frame 'menu-bar-lines 0)
161 (set-frame-parameter frame 'menu-bar-lines old)))
162
6132bc01 163;; Splitting windows.
f617db13 164
8c2b05d5
MW
165(unless (fboundp 'scroll-bar-columns)
166 (defun scroll-bar-columns (side)
167 (cond ((eq side 'left) 0)
168 (window-system 3)
169 (t 1))))
170(unless (fboundp 'fringe-columns)
171 (defun fringe-columns (side)
172 (cond ((not window-system) 0)
173 ((eq side 'left) 1)
174 (t 2))))
175
3ba0b777
MW
176(defun mdw-horizontal-window-overhead ()
177 "Computes the horizontal window overhead.
178This is the number of columns used by fringes, scroll bars and other such
179cruft."
180 (if (not window-system)
181 1
182 (let ((tot 0))
183 (dolist (what '(scroll-bar fringe))
184 (dolist (side '(left right))
185 (incf tot (funcall (intern (concat (symbol-name what) "-columns"))
186 side))))
187 tot)))
188
189(defun mdw-split-window-horizontally (&optional width)
190 "Split a window horizontally.
191Without a numeric argument, split the window approximately in
192half. With a numeric argument WIDTH, allocate WIDTH columns to
193the left-hand window (if positive) or -WIDTH columns to the
194right-hand window (if negative). Space for scroll bars and
195fringes is not taken out of the allowance for WIDTH, unlike
196\\[split-window-horizontally]."
197 (interactive "P")
198 (split-window-horizontally
199 (cond ((null width) nil)
200 ((>= width 0) (+ width (mdw-horizontal-window-overhead)))
201 ((< width 0) width))))
202
22e1b8c3
MW
203(defun mdw-preferred-column-width ()
204 "Return the preferred column width."
205 (if (and window-system (mdw-emacs-version-p 22)) mdw-column-width
206 (1+ mdw-column-width)))
207
8c2b05d5 208(defun mdw-divvy-window (&optional width)
f617db13 209 "Split a wide window into appropriate widths."
8c2b05d5 210 (interactive "P")
22e1b8c3
MW
211 (setq width (if width (prefix-numeric-value width)
212 (mdw-preferred-column-width)))
b5d724dd 213 (let* ((win (selected-window))
3ba0b777 214 (sb-width (mdw-horizontal-window-overhead))
b5d724dd 215 (c (/ (+ (window-width) sb-width)
8c2b05d5 216 (+ width sb-width))))
f617db13
MW
217 (while (> c 1)
218 (setq c (1- c))
8c2b05d5 219 (split-window-horizontally (+ width sb-width))
f617db13
MW
220 (other-window 1))
221 (select-window win)))
222
cc8708fc
MW
223(defun mdw-set-frame-width (columns &optional width)
224 (interactive "nColumns:
225P")
22e1b8c3
MW
226 (setq width (if width (prefix-numeric-value width)
227 (mdw-preferred-column-width)))
cc8708fc
MW
228 (let ((sb-width (mdw-horizontal-window-overhead)))
229 (set-frame-width (selected-frame)
230 (- (* columns (+ width sb-width))
231 sb-width))
232 (mdw-divvy-window width)))
233
cc2be23e
MW
234;; Don't raise windows unless I say so.
235
236(defvar mdw-inhibit-raise-frame nil
237 "*Whether `raise-frame' should do nothing when the frame is mapped.")
238
239(defadvice raise-frame
240 (around mdw-inhibit (&optional frame) activate compile)
241 "Don't actually do anything if `mdw-inhibit-raise-frame' is true, and the
242frame is actually mapped on the screen."
243 (if mdw-inhibit-raise-frame
244 (make-frame-visible frame)
245 ad-do-it))
246
247(defmacro mdw-advise-to-inhibit-raise-frame (function)
248 "Advise the FUNCTION not to raise frames, even if it wants to."
249 `(defadvice ,function
250 (around mdw-inhibit-raise (&rest hunoz) activate compile)
251 "Don't raise the window unless you have to."
252 (let ((mdw-inhibit-raise-frame t))
253 ad-do-it)))
254
255(mdw-advise-to-inhibit-raise-frame select-frame-set-input-focus)
b8e4b4a9 256(mdw-advise-to-inhibit-raise-frame appt-disp-window)
cc2be23e 257
a1e4004c
MW
258;; Bug fix for markdown-mode, which breaks point positioning during
259;; `query-replace'.
260(defadvice markdown-check-change-for-wiki-link
261 (around mdw-save-match activate compile)
262 "Save match data around the `markdown-mode' `after-change-functions' hook."
263 (save-match-data ad-do-it))
264
d54a4cf3
MW
265;; Bug fix for `bbdb-canonicalize-address': on Emacs 24, `run-hook-with-args'
266;; always returns nil, with the result that all email addresses are lost.
267;; Replace the function entirely.
268(defadvice bbdb-canonicalize-address
269 (around mdw-bug-fix activate compile)
270 "Don't use `run-hook-with-args', because that doesn't work."
271 (let ((net (ad-get-arg 0)))
272
273 ;; Make sure this is a proper hook list.
274 (if (functionp bbdb-canonicalize-net-hook)
275 (setq bbdb-canonicalize-net-hook (list bbdb-canonicalize-net-hook)))
276
277 ;; Iterate over the hooks until things converge.
278 (let ((donep nil))
279 (while (not donep)
280 (let (next (changep nil)
281 hook (hooks bbdb-canonicalize-net-hook))
282 (while hooks
283 (setq hook (pop hooks))
284 (setq next (funcall hook net))
285 (if (not (equal next net))
286 (setq changep t
287 net next)))
288 (setq donep (not changep)))))
289 (setq ad-return-value net)))
290
c4b18360
MW
291;; Transient mark mode hacks.
292
293(defadvice exchange-point-and-mark
294 (around mdw-highlight (&optional arg) activate compile)
295 "Maybe don't actually exchange point and mark.
296If `transient-mark-mode' is on and the mark is inactive, then
297just activate it. A non-trivial prefix argument will force the
298usual behaviour. A trivial prefix argument (i.e., just C-u) will
299activate the mark and temporarily enable `transient-mark-mode' if
300it's currently off."
301 (cond ((or mark-active
302 (and (not transient-mark-mode) (not arg))
303 (and arg (or (not (consp arg))
304 (not (= (car arg) 4)))))
305 ad-do-it)
306 (t
307 (or transient-mark-mode (setq transient-mark-mode 'only))
308 (set-mark (mark t)))))
309
6132bc01 310;; Functions for sexp diary entries.
f617db13 311
aede9fd7
MW
312(defun mdw-not-org-mode (form)
313 "As FORM, but not in Org mode agenda."
314 (and (not mdw-diary-for-org-mode-p)
315 (eval form)))
316
f617db13
MW
317(defun mdw-weekday (l)
318 "Return non-nil if `date' falls on one of the days of the week in L.
6132bc01
MW
319L is a list of day numbers (from 0 to 6 for Sunday through to
320Saturday) or symbols `sunday', `monday', etc. (or a mixture). If
321the date stored in `date' falls on a listed day, then the
322function returns non-nil."
f617db13
MW
323 (let ((d (calendar-day-of-week date)))
324 (or (memq d l)
325 (memq (nth d '(sunday monday tuesday wednesday
326 thursday friday saturday)) l))))
327
d401f71b
MW
328(defun mdw-discordian-date (date)
329 "Return the Discordian calendar date corresponding to DATE.
330
331The return value is (YOLD . st-tibs-day) or (YOLD SEASON DAYNUM DOW).
332
333The original is by David Pearson. I modified it to produce date components
334as output rather than a string."
335 (let* ((days ["Sweetmorn" "Boomtime" "Pungenday"
336 "Prickle-Prickle" "Setting Orange"])
337 (months ["Chaos" "Discord" "Confusion"
338 "Bureaucracy" "Aftermath"])
339 (day-count [0 31 59 90 120 151 181 212 243 273 304 334])
340 (year (- (extract-calendar-year date) 1900))
341 (month (1- (extract-calendar-month date)))
342 (day (1- (extract-calendar-day date)))
343 (julian (+ (aref day-count month) day))
344 (dyear (+ year 3066)))
345 (if (and (= month 1) (= day 28))
346 (cons dyear 'st-tibs-day)
347 (list dyear
348 (aref months (floor (/ julian 73)))
349 (1+ (mod julian 73))
350 (aref days (mod julian 5))))))
351
352(defun mdw-diary-discordian-date ()
353 "Convert the date in `date' to a string giving the Discordian date."
354 (let* ((ddate (mdw-discordian-date date))
355 (tail (format "in the YOLD %d" (car ddate))))
356 (if (eq (cdr ddate) 'st-tibs-day)
357 (format "St Tib's Day %s" tail)
358 (let ((season (cadr ddate))
359 (daynum (caddr ddate))
360 (dayname (cadddr ddate)))
361 (format "%s, the %d%s day of %s %s"
362 dayname
363 daynum
364 (let ((ldig (mod daynum 10)))
365 (cond ((= ldig 1) "st")
366 ((= ldig 2) "nd")
367 ((= ldig 3) "rd")
368 (t "th")))
369 season
370 tail)))))
371
f617db13
MW
372(defun mdw-todo (&optional when)
373 "Return non-nil today, or on WHEN, whichever is later."
374 (let ((w (calendar-absolute-from-gregorian (calendar-current-date)))
375 (d (calendar-absolute-from-gregorian date)))
376 (if when
377 (setq w (max w (calendar-absolute-from-gregorian
378 (cond
379 ((not european-calendar-style)
380 when)
381 ((> (car when) 100)
382 (list (nth 1 when)
383 (nth 2 when)
384 (nth 0 when)))
385 (t
386 (list (nth 1 when)
387 (nth 0 when)
388 (nth 2 when))))))))
389 (eq w d)))
390
aede9fd7
MW
391(defvar mdw-diary-for-org-mode-p nil)
392
393(defadvice org-agenda-list (around mdw-preserve-links activate)
394 (let ((mdw-diary-for-org-mode-p t))
395 ad-do-it))
396
1d342abe 397(defadvice diary-add-to-list (before mdw-trim-leading-space compile activate)
9f58a8d2
MW
398 "Trim leading space from the diary entry string."
399 (save-match-data
2745469d
MW
400 (let ((str (ad-get-arg 1))
401 (done nil) old)
402 (while (not done)
403 (setq old str)
404 (setq str (cond ((null str) nil)
405 ((string-match "\\(^\\|\n\\)[ \t]+" str)
406 (replace-match "\\1" nil nil str))
aede9fd7
MW
407 ((and mdw-diary-for-org-mode-p
408 (string-match (concat
2745469d 409 "\\(^\\|\n\\)"
aede9fd7
MW
410 "\\(" diary-time-regexp
411 "\\(-" diary-time-regexp "\\)?"
2745469d
MW
412 "\\)"
413 "\\(\t[ \t]*\\| [ \t]+\\)")
aede9fd7 414 str))
2745469d 415 (replace-match "\\1\\2 " nil nil str))
aede9fd7
MW
416 ((and (not mdw-diary-for-org-mode-p)
417 (string-match "\\[\\[[^][]*]\\[\\([^][]*\\)]]"
418 str))
419 (replace-match "\\1" nil nil str))
2745469d
MW
420 (t str)))
421 (if (equal str old) (setq done t)))
422 (ad-set-arg 1 str))))
9f58a8d2 423
319736bd
MW
424(defadvice org-bbdb-anniversaries (after mdw-fixup-list compile activate)
425 "Return a string rather than a list."
426 (with-temp-buffer
427 (let ((anyp nil))
428 (dolist (e (let ((ee ad-return-value))
429 (if (atom ee) (list ee) ee)))
430 (when e
431 (when anyp (insert ?\n))
432 (insert e)
433 (setq anyp t)))
434 (setq ad-return-value
435 (and anyp (buffer-string))))))
436
6132bc01 437;; Fighting with Org-mode's evil key maps.
16fe7c41
MW
438
439(defvar mdw-evil-keymap-keys
440 '(([S-up] . [?\C-c up])
441 ([S-down] . [?\C-c down])
442 ([S-left] . [?\C-c left])
443 ([S-right] . [?\C-c right])
444 (([M-up] [?\e up]) . [C-up])
445 (([M-down] [?\e down]) . [C-down])
446 (([M-left] [?\e left]) . [C-left])
447 (([M-right] [?\e right]) . [C-right]))
448 "Defines evil keybindings to clobber in `mdw-clobber-evil-keymap'.
449The value is an alist mapping evil keys (as a list, or singleton)
450to good keys (in the same form).")
451
452(defun mdw-clobber-evil-keymap (keymap)
453 "Replace evil key bindings in the KEYMAP.
454Evil key bindings are defined in `mdw-evil-keymap-keys'."
455 (dolist (entry mdw-evil-keymap-keys)
456 (let ((binding nil)
457 (keys (if (listp (car entry))
458 (car entry)
459 (list (car entry))))
460 (replacements (if (listp (cdr entry))
461 (cdr entry)
462 (list (cdr entry)))))
463 (catch 'found
464 (dolist (key keys)
465 (setq binding (lookup-key keymap key))
466 (when binding
467 (throw 'found nil))))
468 (when binding
469 (dolist (key keys)
470 (define-key keymap key nil))
471 (dolist (key replacements)
472 (define-key keymap key binding))))))
473
1656a861
MW
474(defvar mdw-org-latex-defs
475 '(("strayman"
476 "\\documentclass{strayman}
f0dbee84
MW
477\\usepackage[utf8]{inputenc}
478\\usepackage[palatino, helvetica, courier, maths=cmr]{mdwfonts}
f0dbee84 479\\usepackage{graphicx, tikz, mdwtab, mdwmath, crypto, longtable}"
1656a861
MW
480 ("\\section{%s}" . "\\section*{%s}")
481 ("\\subsection{%s}" . "\\subsection*{%s}")
482 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
483 ("\\paragraph{%s}" . "\\paragraph*{%s}")
484 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))))
485
486(eval-after-load "org-latex"
487 '(setq org-export-latex-classes
488 (append mdw-org-latex-defs org-export-latex-classes)))
f0dbee84 489
fbc946b7
MW
490(eval-after-load "ox-latex"
491 '(setq org-latex-classes (append mdw-org-latex-defs org-latex-classes)
492 org-latex-default-packages-alist '(("AUTO" "inputenc" t)
493 ("T1" "fontenc" t)
494 ("" "fixltx2e" nil)
495 ("" "graphicx" t)
496 ("" "longtable" nil)
497 ("" "float" nil)
498 ("" "wrapfig" nil)
499 ("" "rotating" nil)
500 ("normalem" "ulem" t)
501 ("" "textcomp" t)
502 ("" "marvosym" t)
503 ("" "wasysym" t)
504 ("" "amssymb" t)
505 ("" "hyperref" nil)
506 "\\tolerance=1000")))
507
508
8ba985cb
MW
509(setq org-export-docbook-xslt-proc-command "xsltproc --output %o %s %i"
510 org-export-docbook-xsl-fo-proc-command "fop %i.safe %o"
511 org-export-docbook-xslt-stylesheet
512 "/usr/share/xml/docbook/stylesheet/docbook-xsl/fo/docbook.xsl")
513
5a0925a4
MW
514;; Glasses.
515
516(setq glasses-separator "-"
517 glasses-separate-parentheses-p nil
518 glasses-uncapitalize-p t)
519
5dccbe61
MW
520;; Some hacks to do with window placement.
521
522(defun mdw-clobber-other-windows-showing-buffer (buffer-or-name)
523 "Arrange that no windows on other frames are showing BUFFER-OR-NAME."
524 (interactive "bBuffer: ")
525 (let ((home-frame (selected-frame))
526 (buffer (get-buffer buffer-or-name))
527 (safe-buffer (get-buffer "*scratch*")))
528 (mapc (lambda (frame)
529 (or (eq frame home-frame)
530 (mapc (lambda (window)
531 (and (eq (window-buffer window) buffer)
532 (set-window-buffer window safe-buffer)))
533 (window-list frame))))
534 (frame-list))))
535
536(defvar mdw-inhibit-walk-windows nil
537 "If non-nil, then `walk-windows' does nothing.
538This is used by advice on `switch-to-buffer-other-frame' to inhibit finding
539buffers in random frames.")
540
541(defadvice walk-windows (around mdw-inhibit activate)
542 "If `mdw-inhibit-walk-windows' is non-nil, then do nothing."
543 (and (not mdw-inhibit-walk-windows)
544 ad-do-it))
545
546(defadvice switch-to-buffer-other-frame
547 (around mdw-always-new-frame activate)
548 "Always make a new frame.
549Even if an existing window in some random frame looks tempting."
550 (let ((mdw-inhibit-walk-windows t)) ad-do-it))
551
552(defadvice display-buffer (before mdw-inhibit-other-frames activate)
553 "Don't try to do anything fancy with other frames.
554Pretend they don't exist. They might be on other display devices."
555 (ad-set-arg 2 nil))
556
b7fc31ec
MW
557;;;--------------------------------------------------------------------------
558;;; Improved compilation machinery.
559
560;; Uprated version of M-x compile.
561
562(setq compile-command
563 (let ((ncpu (with-temp-buffer
564 (insert-file-contents "/proc/cpuinfo")
565 (buffer-string)
566 (count-matches "^processor\\s-*:"))))
567 (format "make -j%d -k" (* 2 ncpu))))
568
569(defun mdw-compilation-buffer-name (mode)
570 (concat "*" (downcase mode) ": "
571 (abbreviate-file-name default-directory) "*"))
572(setq compilation-buffer-name-function 'mdw-compilation-buffer-name)
573
574(eval-after-load "compile"
575 '(progn
576 (define-key compilation-shell-minor-mode-map "\C-c\M-g" 'recompile)))
577
8845865d
MW
578(defadvice compile (around hack-environment compile activate)
579 "Hack the environment inherited by inferiors in the compilation."
580 (let ((process-environment process-environment))
581 (setenv "LD_PRELOAD" nil)
582 ad-do-it))
583
b7fc31ec
MW
584(defun mdw-compile (command &optional directory comint)
585 "Initiate a compilation COMMAND, maybe in a different DIRECTORY.
586The DIRECTORY may be nil to not change. If COMINT is t, then
587start an interactive compilation.
588
589Interactively, prompt for the command if the variable
590`compilation-read-command' is non-nil, or if requested through
591the prefix argument. Prompt for the directory, and run
592interactively, if requested through the prefix.
593
594Use a prefix of 4, 6, 12, or 14, or type C-u between one and three times, to
595force prompting for a directory.
596
597Use a prefix of 2, 6, 10, or 14, or type C-u three times, to force
598prompting for the command.
599
600Use a prefix of 8, 10, 12, or 14, or type C-u twice or three times,
601to force interactive compilation."
602 (interactive
603 (let* ((prefix (prefix-numeric-value current-prefix-arg))
604 (command (eval compile-command))
605 (dir (and (plusp (logand prefix #x54))
606 (read-directory-name "Compile in directory: "))))
607 (list (if (or compilation-read-command
608 (plusp (logand prefix #x42)))
609 (compilation-read-command command)
610 command)
611 dir
612 (plusp (logand prefix #x58)))))
613 (let ((default-directory (or directory default-directory)))
614 (compile command comint)))
615
50d3dd03
MW
616;; Flymake support.
617
618(defun mdw-find-build-dir (build-file)
619 (catch 'found
620 (let* ((src-dir (file-name-as-directory (expand-file-name ".")))
621 (dir src-dir))
622 (loop
623 (when (file-exists-p (concat dir build-file))
624 (throw 'found dir))
625 (let ((sub (expand-file-name (file-relative-name src-dir dir)
626 (concat dir "build/"))))
627 (catch 'give-up
628 (loop
629 (when (file-exists-p (concat sub build-file))
630 (throw 'found sub))
631 (when (string= sub dir) (throw 'give-up nil))
632 (setq sub (file-name-directory (directory-file-name sub))))))
633 (when (string= dir
634 (setq dir (file-name-directory
635 (directory-file-name dir))))
636 (throw 'found nil))))))
637
638(defun mdw-flymake-make-init ()
639 (let ((build-dir (mdw-find-build-dir "Makefile")))
640 (and build-dir
641 (let ((tmp-src (flymake-init-create-temp-buffer-copy
642 #'flymake-create-temp-inplace)))
643 (flymake-get-syntax-check-program-args
644 tmp-src build-dir t t
645 #'flymake-get-make-cmdline)))))
646
647(setq flymake-allowed-file-name-masks
f1150017 648 '(("\\.\\(?:[cC]\\|cc\\|cpp\\|cxx\\|c\\+\\+\\)\\'"
50d3dd03 649 mdw-flymake-make-init)
f1150017 650 ("\\.\\(?:[hH]\\|hh\\|hpp\\|hxx\\|h\\+\\+\\)\\'"
50d3dd03
MW
651 mdw-flymake-master-make-init)
652 ("\\.p[lm]" flymake-perl-init)))
653
654(setq flymake-mode-map
655 (let ((map (if (boundp 'flymake-mode-map)
656 flymake-mode-map
657 (make-sparse-keymap))))
658 (define-key map [?\C-c ?\C-f ?\C-p] 'flymake-goto-prev-error)
659 (define-key map [?\C-c ?\C-f ?\C-n] 'flymake-goto-next-error)
660 (define-key map [?\C-c ?\C-f ?\C-c] 'flymake-compile)
661 (define-key map [?\C-c ?\C-f ?\C-k] 'flymake-stop-all-syntax-checks)
662 (define-key map [?\C-c ?\C-f ?\C-e] 'flymake-popup-current-error-menu)
663 map))
664
6132bc01
MW
665;;;--------------------------------------------------------------------------
666;;; Mail and news hacking.
a3bdb4d9
MW
667
668(define-derived-mode mdwmail-mode mail-mode "[mdw] mail"
6132bc01 669 "Major mode for editing news and mail messages from external programs.
a3bdb4d9
MW
670Not much right now. Just support for doing MailCrypt stuff."
671 :syntax-table nil
672 :abbrev-table nil
673 (run-hooks 'mail-setup-hook))
674
675(define-key mdwmail-mode-map [?\C-c ?\C-c] 'disabled-operation)
676
677(add-hook 'mdwail-mode-hook
678 (lambda ()
679 (set-buffer-file-coding-system 'utf-8)
680 (make-local-variable 'paragraph-separate)
681 (make-local-variable 'paragraph-start)
682 (setq paragraph-start
683 (concat "[ \t]*[-_][-_][-_]+$\\|^-- \\|-----\\|"
684 paragraph-start))
685 (setq paragraph-separate
686 (concat "[ \t]*[-_][-_][-_]+$\\|^-- \\|-----\\|"
687 paragraph-separate))))
688
6132bc01 689;; How to encrypt in mdwmail.
a3bdb4d9
MW
690
691(defun mdwmail-mc-encrypt (&optional recip scm start end from sign)
692 (or start
693 (setq start (save-excursion
694 (goto-char (point-min))
695 (or (search-forward "\n\n" nil t) (point-min)))))
696 (or end
697 (setq end (point-max)))
698 (mc-encrypt-generic recip scm start end from sign))
699
6132bc01 700;; How to sign in mdwmail.
a3bdb4d9
MW
701
702(defun mdwmail-mc-sign (key scm start end uclr)
703 (or start
704 (setq start (save-excursion
705 (goto-char (point-min))
706 (or (search-forward "\n\n" nil t) (point-min)))))
707 (or end
708 (setq end (point-max)))
709 (mc-sign-generic key scm start end uclr))
710
6132bc01 711;; Some signature mangling.
a3bdb4d9
MW
712
713(defun mdwmail-mangle-signature ()
714 (save-excursion
715 (goto-char (point-min))
716 (perform-replace "\n-- \n" "\n-- " nil nil nil)))
717(add-hook 'mail-setup-hook 'mdwmail-mangle-signature)
718(add-hook 'message-setup-hook 'mdwmail-mangle-signature)
719
6132bc01 720;; Insert my login name into message-ids, so I can score replies.
a3bdb4d9
MW
721
722(defadvice message-unique-id (after mdw-user-name last activate compile)
723 "Ensure that the user's name appears at the end of the message-id string,
724so that it can be used for convenient filtering."
725 (setq ad-return-value (concat ad-return-value "." (user-login-name))))
726
6132bc01 727;; Tell my movemail hack where movemail is.
a3bdb4d9
MW
728;;
729;; This is needed to shup up warnings about LD_PRELOAD.
730
731(let ((path exec-path))
732 (while path
733 (let ((try (expand-file-name "movemail" (car path))))
734 (if (file-executable-p try)
735 (setenv "REAL_MOVEMAIL" try))
736 (setq path (cdr path)))))
737
4d5799eb
MW
738;; AUTHINFO GENERIC kludge.
739
740(defvar nntp-authinfo-generic nil
741 "Set to the `NNTPAUTH' string to pass on to `authinfo-kludge'.
742
743Use this to arrange for per-server settings.")
744
745(defun nntp-open-authinfo-kludge (buffer)
746 "Open a connection to SERVER using `authinfo-kludge'."
747 (let ((proc (start-process "nntpd" buffer
748 "env" (concat "NNTPAUTH="
749 (or nntp-authinfo-generic
750 (getenv "NNTPAUTH")
751 (error "NNTPAUTH unset")))
752 "authinfo-kludge" nntp-address)))
753 (set-buffer buffer)
754 (nntp-wait-for-string "^\r*200")
755 (beginning-of-line)
756 (delete-region (point-min) (point))
757 proc))
758
d17c6756 759(eval-after-load "erc"
3db66f7b 760 '(load "~/.ercrc.el"))
d17c6756 761
d2d1d5dc
MW
762;; Heavy-duty Gnus patching.
763
764(defun mdw-nnimap-transform-headers ()
765 (goto-char (point-min))
766 (let (article lines size string)
767 (block nil
768 (while (not (eobp))
769 (while (not (looking-at "\\* [0-9]+ FETCH"))
770 (delete-region (point) (progn (forward-line 1) (point)))
771 (when (eobp)
772 (return)))
773 (goto-char (match-end 0))
774 ;; Unfold quoted {number} strings.
775 (while (re-search-forward
776 "[^]][ (]{\\([0-9]+\\)}\r?\n"
777 (save-excursion
778 ;; Start of the header section.
779 (or (re-search-forward "] {[0-9]+}\r?\n" nil t)
780 ;; Start of the next FETCH.
781 (re-search-forward "\\* [0-9]+ FETCH" nil t)
782 (point-max)))
783 t)
784 (setq size (string-to-number (match-string 1)))
785 (delete-region (+ (match-beginning 0) 2) (point))
786 (setq string (buffer-substring (point) (+ (point) size)))
787 (delete-region (point) (+ (point) size))
788 (insert (format "%S" (mm-subst-char-in-string ?\n ?\s string)))
789 ;; [mdw] missing from upstream
790 (backward-char 1))
791 (beginning-of-line)
792 (setq article
793 (and (re-search-forward "UID \\([0-9]+\\)" (line-end-position)
794 t)
795 (match-string 1)))
796 (setq lines nil)
797 (setq size
798 (and (re-search-forward "RFC822.SIZE \\([0-9]+\\)"
799 (line-end-position)
800 t)
801 (match-string 1)))
802 (beginning-of-line)
803 (when (search-forward "BODYSTRUCTURE" (line-end-position) t)
804 (let ((structure (ignore-errors
805 (read (current-buffer)))))
806 (while (and (consp structure)
807 (not (atom (car structure))))
808 (setq structure (car structure)))
809 (setq lines (if (and
810 (stringp (car structure))
811 (equal (upcase (nth 0 structure)) "MESSAGE")
812 (equal (upcase (nth 1 structure)) "RFC822"))
813 (nth 9 structure)
814 (nth 7 structure)))))
815 (delete-region (line-beginning-position) (line-end-position))
816 (insert (format "211 %s Article retrieved." article))
817 (forward-line 1)
818 (when size
819 (insert (format "Chars: %s\n" size)))
820 (when lines
821 (insert (format "Lines: %s\n" lines)))
822 ;; Most servers have a blank line after the headers, but
823 ;; Davmail doesn't.
824 (unless (re-search-forward "^\r$\\|^)\r?$" nil t)
825 (goto-char (point-max)))
826 (delete-region (line-beginning-position) (line-end-position))
827 (insert ".")
828 (forward-line 1)))))
829
830(eval-after-load 'nnimap
831 '(defalias 'nnimap-transform-headers
832 (symbol-function 'mdw-nnimap-transform-headers)))
833
6132bc01
MW
834;;;--------------------------------------------------------------------------
835;;; Utility functions.
f617db13 836
b5d724dd
MW
837(or (fboundp 'line-number-at-pos)
838 (defun line-number-at-pos (&optional pos)
839 (let ((opoint (or pos (point))) start)
840 (save-excursion
841 (save-restriction
842 (goto-char (point-min))
843 (widen)
844 (forward-line 0)
845 (setq start (point))
846 (goto-char opoint)
847 (forward-line 0)
848 (1+ (count-lines 1 (point))))))))
459c9fb2 849
f617db13 850(defun mdw-uniquify-alist (&rest alists)
f617db13 851 "Return the concatenation of the ALISTS with duplicate elements removed.
6132bc01
MW
852The first association with a given key prevails; others are
853ignored. The input lists are not modified, although they'll
854probably become garbage."
f617db13
MW
855 (and alists
856 (let ((start-list (cons nil nil)))
857 (mdw-do-uniquify start-list
858 start-list
859 (car alists)
860 (cdr alists)))))
861
f617db13 862(defun mdw-do-uniquify (done end l rest)
6132bc01
MW
863 "A helper function for mdw-uniquify-alist.
864The DONE argument is a list whose first element is `nil'. It
865contains the uniquified alist built so far. The leading `nil' is
866stripped off at the end of the operation; it's only there so that
867DONE always references a cons cell. END refers to the final cons
868cell in the DONE list; it is modified in place each time to avoid
869the overheads of `append'ing all the time. The L argument is the
870alist we're currently processing; the remaining alists are given
871in REST."
872
873 ;; There are several different cases to deal with here.
f617db13
MW
874 (cond
875
6132bc01
MW
876 ;; Current list isn't empty. Add the first item to the DONE list if
877 ;; there's not an item with the same KEY already there.
f617db13
MW
878 (l (or (assoc (car (car l)) done)
879 (progn
880 (setcdr end (cons (car l) nil))
881 (setq end (cdr end))))
882 (mdw-do-uniquify done end (cdr l) rest))
883
6132bc01
MW
884 ;; The list we were working on is empty. Shunt the next list into the
885 ;; current list position and go round again.
f617db13
MW
886 (rest (mdw-do-uniquify done end (car rest) (cdr rest)))
887
6132bc01
MW
888 ;; Everything's done. Remove the leading `nil' from the DONE list and
889 ;; return it. Finished!
f617db13
MW
890 (t (cdr done))))
891
f617db13
MW
892(defun date ()
893 "Insert the current date in a pleasing way."
894 (interactive)
895 (insert (save-excursion
896 (let ((buffer (get-buffer-create "*tmp*")))
897 (unwind-protect (progn (set-buffer buffer)
898 (erase-buffer)
899 (shell-command "date +%Y-%m-%d" t)
900 (goto-char (mark))
901 (delete-backward-char 1)
902 (buffer-string))
903 (kill-buffer buffer))))))
904
f617db13
MW
905(defun uuencode (file &optional name)
906 "UUencodes a file, maybe calling it NAME, into the current buffer."
907 (interactive "fInput file name: ")
908
6132bc01 909 ;; If NAME isn't specified, then guess from the filename.
f617db13
MW
910 (if (not name)
911 (setq name
912 (substring file
913 (or (string-match "[^/]*$" file) 0))))
f617db13
MW
914 (print (format "uuencode `%s' `%s'" file name))
915
6132bc01 916 ;; Now actually do the thing.
f617db13
MW
917 (call-process "uuencode" file t nil name))
918
919(defvar np-file "~/.np"
920 "*Where the `now-playing' file is.")
921
922(defun np (&optional arg)
923 "Grabs a `now-playing' string."
924 (interactive)
925 (save-excursion
926 (or arg (progn
852cd5fb 927 (goto-char (point-max))
f617db13 928 (insert "\nNP: ")
daff679f 929 (insert-file-contents np-file)))))
f617db13 930
ae7460d4
MW
931(defun mdw-version-< (ver-a ver-b)
932 "Answer whether VER-A is strictly earlier than VER-B.
933VER-A and VER-B are version numbers, which are strings containing digit
934sequences separated by `.'."
935 (let* ((la (mapcar (lambda (x) (car (read-from-string x)))
936 (split-string ver-a "\\.")))
937 (lb (mapcar (lambda (x) (car (read-from-string x)))
938 (split-string ver-b "\\."))))
939 (catch 'done
940 (while t
941 (cond ((null la) (throw 'done lb))
942 ((null lb) (throw 'done nil))
943 ((< (car la) (car lb)) (throw 'done t))
f64c5a1a
MW
944 ((= (car la) (car lb)) (setq la (cdr la) lb (cdr lb)))
945 (t (throw 'done nil)))))))
ae7460d4 946
c7a8da49 947(defun mdw-check-autorevert ()
6132bc01
MW
948 "Sets global-auto-revert-ignore-buffer appropriately for this buffer.
949This takes into consideration whether it's been found using
950tramp, which seems to get itself into a twist."
46e69f55
MW
951 (cond ((not (boundp 'global-auto-revert-ignore-buffer))
952 nil)
953 ((and (buffer-file-name)
954 (fboundp 'tramp-tramp-file-p)
c7a8da49
MW
955 (tramp-tramp-file-p (buffer-file-name)))
956 (unless global-auto-revert-ignore-buffer
957 (setq global-auto-revert-ignore-buffer 'tramp)))
958 ((eq global-auto-revert-ignore-buffer 'tramp)
959 (setq global-auto-revert-ignore-buffer nil))))
960
961(defadvice find-file (after mdw-autorevert activate)
962 (mdw-check-autorevert))
963(defadvice write-file (after mdw-autorevert activate)
4d9f2d65 964 (mdw-check-autorevert))
eae0aa6d 965
a58a4227
MW
966(defun mdw-auto-revert ()
967 "Recheck all of the autorevertable buffers, and update VC modelines."
968 (interactive)
969 (let ((auto-revert-check-vc-info t))
970 (auto-revert-buffers)))
971
6132bc01
MW
972;;;--------------------------------------------------------------------------
973;;; Dired hacking.
5195cbc3
MW
974
975(defadvice dired-maybe-insert-subdir
976 (around mdw-marked-insertion first activate)
6132bc01
MW
977 "The DIRNAME may be a list of directory names to insert.
978Interactively, if files are marked, then insert all of them.
979With a numeric prefix argument, select that many entries near
980point; with a non-numeric prefix argument, prompt for listing
981options."
5195cbc3
MW
982 (interactive
983 (list (dired-get-marked-files nil
984 (and (integerp current-prefix-arg)
985 current-prefix-arg)
986 #'file-directory-p)
987 (and current-prefix-arg
988 (not (integerp current-prefix-arg))
989 (read-string "Switches for listing: "
990 (or dired-subdir-switches
991 dired-actual-switches)))))
992 (let ((dirs (ad-get-arg 0)))
993 (dolist (dir (if (listp dirs) dirs (list dirs)))
994 (ad-set-arg 0 dir)
995 ad-do-it)))
996
d40903f4
MW
997(defun mdw-dired-run (args &optional syncp)
998 (interactive (let ((file (dired-get-filename t)))
999 (list (read-string (format "Arguments for %s: " file))
1000 current-prefix-arg)))
1001 (funcall (if syncp 'shell-command 'async-shell-command)
1002 (concat (shell-quote-argument (dired-get-filename nil))
1003 " " args)))
1004
2a67803a
MW
1005(defadvice dired-do-flagged-delete
1006 (around mdw-delete-if-prefix-argument activate compile)
1007 (let ((delete-by-moving-to-trash (and (null current-prefix-arg)
1008 delete-by-moving-to-trash)))
1009 ad-do-it))
1010
d40903f4
MW
1011(eval-after-load "dired"
1012 '(define-key dired-mode-map "X" 'mdw-dired-run))
1013
6132bc01
MW
1014;;;--------------------------------------------------------------------------
1015;;; URL viewing.
a203fba8
MW
1016
1017(defun mdw-w3m-browse-url (url &optional new-session-p)
1018 "Invoke w3m on the URL in its current window, or at least a different one.
1019If NEW-SESSION-P, start a new session."
1020 (interactive "sURL: \nP")
1021 (save-excursion
63fb20c1
MW
1022 (let ((window (selected-window)))
1023 (unwind-protect
1024 (progn
1025 (select-window (or (and (not new-session-p)
1026 (get-buffer-window "*w3m*"))
1027 (progn
1028 (if (one-window-p t) (split-window))
1029 (get-lru-window))))
1030 (w3m-browse-url url new-session-p))
1031 (select-window window)))))
a203fba8 1032
2ae8f8e3
MW
1033(eval-after-load 'w3m
1034 '(define-key w3m-mode-map [?\e ?\r] 'w3m-view-this-url-new-session))
1035
a203fba8 1036(defvar mdw-good-url-browsers
90ac1ffc
MW
1037 '(browse-url-chromium
1038 browse-url-mozilla
a0d16e44 1039 browse-url-generic
ed5e20a5 1040 (w3m . mdw-w3m-browse-url)
a0d16e44 1041 browse-url-w3)
6132bc01
MW
1042 "List of good browsers for mdw-good-url-browsers.
1043Each item is a browser function name, or a cons (CHECK . FUNC).
1044A symbol FOO stands for (FOO . FOO).")
a203fba8
MW
1045
1046(defun mdw-good-url-browser ()
6132bc01
MW
1047 "Return a good URL browser.
1048Trundle the list of such things, finding the first item for which
1049CHECK is fboundp, and returning the correponding FUNC."
a203fba8
MW
1050 (let ((bs mdw-good-url-browsers) b check func answer)
1051 (while (and bs (not answer))
1052 (setq b (car bs)
1053 bs (cdr bs))
1054 (if (consp b)
1055 (setq check (car b) func (cdr b))
1056 (setq check b func b))
1057 (if (fboundp check)
1058 (setq answer func)))
1059 answer))
1060
f36cdb77
MW
1061(eval-after-load "w3m-search"
1062 '(progn
1063 (dolist
1064 (item
1065 '(("g" "Google" "http://www.google.co.uk/search?q=%s")
1066 ("gd" "Google Directory"
1067 "http://www.google.com/search?cat=gwd/Top&q=%s")
1068 ("gg" "Google Groups" "http://groups.google.com/groups?q=%s")
1069 ("ward" "Ward's wiki" "http://c2.com/cgi/wiki?%s")
1070 ("gi" "Images" "http://images.google.com/images?q=%s")
1071 ("rfc" "RFC"
1072 "http://metalzone.distorted.org.uk/ftp/pub/mirrors/rfc/rfc%s.txt.gz")
1073 ("wp" "Wikipedia"
1074 "http://en.wikipedia.org/wiki/Special:Search?go=Go&search=%s")
1075 ("imdb" "IMDb" "http://www.imdb.com/Find?%s")
1076 ("nc-wiki" "nCipher wiki"
1077 "http://wiki.ncipher.com/wiki/bin/view/Devel/?topic=%s")
1078 ("map" "Google maps" "http://maps.google.co.uk/maps?q=%s&hl=en")
1079 ("lp" "Launchpad bug by number"
1080 "https://bugs.launchpad.net/bugs/%s")
1081 ("lppkg" "Launchpad bugs by package"
1082 "https://bugs.launchpad.net/%s")
1083 ("msdn" "MSDN"
1084 "http://social.msdn.microsoft.com/Search/en-GB/?query=%s&ac=8")
1085 ("debbug" "Debian bug by number"
1086 "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s")
1087 ("debbugpkg" "Debian bugs by package"
1088 "http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=%s")
1089 ("ljlogin" "LJ login" "http://www.livejournal.com/login.bml")))
1090 (add-to-list 'w3m-search-engine-alist
1091 (list (cadr item) (caddr item) nil))
1092 (add-to-list 'w3m-uri-replace-alist
1093 (list (concat "\\`" (car item) ":")
1094 'w3m-search-uri-replace
1095 (cadr item))))))
1096
6132bc01
MW
1097;;;--------------------------------------------------------------------------
1098;;; Paragraph filling.
f617db13 1099
6132bc01 1100;; Useful variables.
f617db13
MW
1101
1102(defvar mdw-fill-prefix nil
6132bc01
MW
1103 "*Used by `mdw-line-prefix' and `mdw-fill-paragraph'.
1104If there's no fill prefix currently set (by the `fill-prefix'
1105variable) and there's a match from one of the regexps here, it
1106gets used to set the fill-prefix for the current operation.
f617db13 1107
6132bc01
MW
1108The variable is a list of items of the form `REGEXP . PREFIX'; if
1109the REGEXP matches, the PREFIX is used to set the fill prefix.
1110It in turn is a list of things:
f617db13
MW
1111
1112 STRING -- insert a literal string
1113 (match . N) -- insert the thing matched by bracketed subexpression N
1114 (pad . N) -- a string of whitespace the same width as subexpression N
1115 (expr . FORM) -- the result of evaluating FORM")
1116
1117(make-variable-buffer-local 'mdw-fill-prefix)
1118
1119(defvar mdw-hanging-indents
10fa2414 1120 (concat "\\(\\("
f8bfe560 1121 "\\([*o+]\\|-[-#]?\\|[0-9]+\\.\\|\\[[0-9]+\\]\\|([a-zA-Z])\\)"
10fa2414
MW
1122 "[ \t]+"
1123 "\\)?\\)")
6132bc01
MW
1124 "*Standard regexp matching parts of a hanging indent.
1125This is mainly useful in `auto-fill-mode'.")
f617db13 1126
6132bc01 1127;; Utility functions.
f617db13 1128
cd07f97f
MW
1129(defun mdw-maybe-tabify (s)
1130 "Tabify or untabify the string S, according to `indent-tabs-mode'."
c736b08b
MW
1131 (let ((tabfun (if indent-tabs-mode #'tabify #'untabify)))
1132 (with-temp-buffer
1133 (save-match-data
f617db13 1134 (insert s "\n")
cd07f97f 1135 (let ((start (point-min)) (end (point-max)))
c736b08b
MW
1136 (funcall tabfun (point-min) (point-max))
1137 (setq s (buffer-substring (point-min) (1- (point-max)))))))))
f617db13
MW
1138
1139(defun mdw-examine-fill-prefixes (l)
6132bc01
MW
1140 "Given a list of dynamic fill prefixes, pick one which matches
1141context and return the static fill prefix to use. Point must be
1142at the start of a line, and match data must be saved."
f617db13 1143 (cond ((not l) nil)
6ed1b26a
MW
1144 ((looking-at (car (car l)))
1145 (mdw-maybe-tabify (apply #'concat
1146 (mapcar #'mdw-do-prefix-match
1147 (cdr (car l))))))
1148 (t (mdw-examine-fill-prefixes (cdr l)))))
f617db13
MW
1149
1150(defun mdw-maybe-car (p)
1151 "If P is a pair, return (car P), otherwise just return P."
1152 (if (consp p) (car p) p))
1153
1154(defun mdw-padding (s)
1155 "Return a string the same width as S but made entirely from whitespace."
1156 (let* ((l (length s)) (i 0) (n (make-string l ? )))
1157 (while (< i l)
1158 (if (= 9 (aref s i))
1159 (aset n i 9))
1160 (setq i (1+ i)))
1161 n))
1162
1163(defun mdw-do-prefix-match (m)
6132bc01
MW
1164 "Expand a dynamic prefix match element.
1165See `mdw-fill-prefix' for details."
f617db13 1166 (cond ((not (consp m)) (format "%s" m))
6ed1b26a
MW
1167 ((eq (car m) 'match) (match-string (mdw-maybe-car (cdr m))))
1168 ((eq (car m) 'pad) (mdw-padding (match-string
1169 (mdw-maybe-car (cdr m)))))
1170 ((eq (car m) 'eval) (eval (cdr m)))
1171 (t "")))
f617db13
MW
1172
1173(defun mdw-choose-dynamic-fill-prefix ()
1174 "Work out the dynamic fill prefix based on the variable `mdw-fill-prefix'."
1175 (cond ((and fill-prefix (not (string= fill-prefix ""))) fill-prefix)
6ed1b26a
MW
1176 ((not mdw-fill-prefix) fill-prefix)
1177 (t (save-excursion
1178 (beginning-of-line)
1179 (save-match-data
1180 (mdw-examine-fill-prefixes mdw-fill-prefix))))))
f617db13 1181
b8c659bb 1182(defadvice do-auto-fill (around mdw-dynamic-fill-prefix () activate compile)
6132bc01
MW
1183 "Handle auto-filling, working out a dynamic fill prefix in the
1184case where there isn't a sensible static one."
f617db13 1185 (let ((fill-prefix (mdw-choose-dynamic-fill-prefix)))
b8c659bb 1186 ad-do-it))
f617db13
MW
1187
1188(defun mdw-fill-paragraph ()
1189 "Fill paragraph, getting a dynamic fill prefix."
1190 (interactive)
1191 (let ((fill-prefix (mdw-choose-dynamic-fill-prefix)))
1192 (fill-paragraph nil)))
1193
1194(defun mdw-standard-fill-prefix (rx &optional mat)
1195 "Set the dynamic fill prefix, handling standard hanging indents and stuff.
6132bc01
MW
1196This is just a short-cut for setting the thing by hand, and by
1197design it doesn't cope with anything approximating a complicated
1198case."
f617db13 1199 (setq mdw-fill-prefix
6ed1b26a
MW
1200 `((,(concat rx mdw-hanging-indents)
1201 (match . 1)
1202 (pad . ,(or mat 2))))))
f617db13 1203
6132bc01
MW
1204;;;--------------------------------------------------------------------------
1205;;; Other common declarations.
f617db13 1206
6132bc01 1207;; Common mode settings.
f617db13
MW
1208
1209(defvar mdw-auto-indent t
1210 "Whether to indent automatically after a newline.")
1211
0e58a7c2
MW
1212(defun mdw-whitespace-mode (&optional arg)
1213 "Turn on/off whitespace mode, but don't highlight trailing space."
1214 (interactive "P")
1215 (when (and (boundp 'whitespace-style)
1216 (fboundp 'whitespace-mode))
1217 (let ((whitespace-style (remove 'trailing whitespace-style)))
558fc014
MW
1218 (whitespace-mode arg))
1219 (setq show-trailing-whitespace whitespace-mode)))
0e58a7c2 1220
21beda17
MW
1221(defvar mdw-do-misc-mode-hacking nil)
1222
f617db13
MW
1223(defun mdw-misc-mode-config ()
1224 (and mdw-auto-indent
1225 (cond ((eq major-mode 'lisp-mode)
1226 (local-set-key "\C-m" 'mdw-indent-newline-and-indent))
4a7ce1ee 1227 ((derived-mode-p 'slime-repl-mode 'asm-mode 'comint-mode)
30c8a8fb 1228 nil)
f617db13
MW
1229 (t
1230 (local-set-key "\C-m" 'newline-and-indent))))
2e7c6a86 1231 (set (make-local-variable 'mdw-do-misc-mode-hacking) t)
f617db13 1232 (local-set-key [C-return] 'newline)
8a425bd7 1233 (make-local-variable 'page-delimiter)
8cb7626b 1234 (setq page-delimiter "\f\\|^.*-\\{6\\}.*$")
f617db13
MW
1235 (setq comment-column 40)
1236 (auto-fill-mode 1)
c7203018 1237 (setq fill-column mdw-text-width)
253f61b4
MW
1238 (and (fboundp 'gtags-mode)
1239 (gtags-mode))
ddf6e116 1240 (if (fboundp 'hs-minor-mode)
612717ec 1241 (trap (hs-minor-mode t))
ddf6e116 1242 (outline-minor-mode t))
49b2646e 1243 (reveal-mode t)
1e7a9479 1244 (trap (turn-on-font-lock)))
f617db13 1245
2e7c6a86 1246(defun mdw-post-local-vars-misc-mode-config ()
c7203018 1247 (setq whitespace-line-column mdw-text-width)
2717a191
MW
1248 (when (and mdw-do-misc-mode-hacking
1249 (not buffer-read-only))
2e7c6a86
MW
1250 (setq show-trailing-whitespace t)
1251 (mdw-whitespace-mode 1)))
1252(add-hook 'hack-local-variables-hook 'mdw-post-local-vars-misc-mode-config)
ed7b46b9 1253
2c1ccbb9
MW
1254(defmacro mdw-advise-update-angry-fruit-salad (&rest funcs)
1255 `(progn ,@(mapcar (lambda (func)
1256 `(defadvice ,func
1257 (after mdw-angry-fruit-salad activate)
1258 (when mdw-do-misc-mode-hacking
1259 (setq show-trailing-whitespace
1260 (not buffer-read-only))
1261 (mdw-whitespace-mode (if buffer-read-only 0 1)))))
1262 funcs)))
1263(mdw-advise-update-angry-fruit-salad toggle-read-only
1264 read-only-mode
1265 view-mode
1266 view-mode-enable
1267 view-mode-disable)
2717a191 1268
253f61b4 1269(eval-after-load 'gtags
506bada9
MW
1270 '(progn
1271 (dolist (key '([mouse-2] [mouse-3]))
1272 (define-key gtags-mode-map key nil))
1273 (define-key gtags-mode-map [C-S-mouse-2] 'gtags-find-tag-by-event)
1274 (define-key gtags-select-mode-map [C-S-mouse-2]
1275 'gtags-select-tag-by-event)
1276 (dolist (map (list gtags-mode-map gtags-select-mode-map))
1277 (define-key map [C-S-mouse-3] 'gtags-pop-stack))))
253f61b4 1278
6132bc01 1279;; Backup file handling.
2ae647c4
MW
1280
1281(defvar mdw-backup-disable-regexps nil
6132bc01
MW
1282 "*List of regular expressions: if a file name matches any of
1283these then the file is not backed up.")
2ae647c4
MW
1284
1285(defun mdw-backup-enable-predicate (name)
6132bc01
MW
1286 "[mdw]'s default backup predicate.
1287Allows a backup if the standard predicate would allow it, and it
1288doesn't match any of the regular expressions in
1289`mdw-backup-disable-regexps'."
2ae647c4
MW
1290 (and (normal-backup-enable-predicate name)
1291 (let ((answer t) (list mdw-backup-disable-regexps))
1292 (save-match-data
1293 (while list
1294 (if (string-match (car list) name)
1295 (setq answer nil))
1296 (setq list (cdr list)))
1297 answer))))
1298(setq backup-enable-predicate 'mdw-backup-enable-predicate)
1299
7bb78c67
MW
1300;; Frame cleanup.
1301
1302(defun mdw-last-one-out-turn-off-the-lights (frame)
1303 "Disconnect from an X display if this was the last frame on that display."
1304 (let ((frame-display (frame-parameter frame 'display)))
1305 (when (and frame-display
1306 (eq window-system 'x)
1307 (not (some (lambda (fr)
7bb78c67 1308 (and (not (eq fr frame))
a04d8f3d 1309 (string= (frame-parameter fr 'display)
d70716b5 1310 frame-display)))
7bb78c67 1311 (frame-list))))
7bb78c67
MW
1312 (run-with-idle-timer 0 nil #'x-close-connection frame-display))))
1313(add-hook 'delete-frame-functions 'mdw-last-one-out-turn-off-the-lights)
1314
f3674a83
MW
1315;;;--------------------------------------------------------------------------
1316;;; Fullscreen-ness.
1317
1318(defvar mdw-full-screen-parameters
1319 '((menu-bar-lines . 0)
1320 ;(vertical-scroll-bars . nil)
1321 )
1322 "Frame parameters to set when making a frame fullscreen.")
1323
1324(defvar mdw-full-screen-save
1325 '(width height)
1326 "Extra frame parameters to save when setting fullscreen.")
1327
1328(defun mdw-toggle-full-screen (&optional frame)
1329 "Show the FRAME fullscreen."
1330 (interactive)
1331 (when window-system
1332 (cond ((frame-parameter frame 'fullscreen)
1333 (set-frame-parameter frame 'fullscreen nil)
1334 (modify-frame-parameters
1335 nil
1336 (or (frame-parameter frame 'mdw-full-screen-saved)
1337 (mapcar (lambda (assoc)
1338 (assq (car assoc) default-frame-alist))
1339 mdw-full-screen-parameters))))
1340 (t
1341 (let ((saved (mapcar (lambda (param)
1342 (cons param (frame-parameter frame param)))
1343 (append (mapcar #'car
1344 mdw-full-screen-parameters)
1345 mdw-full-screen-save))))
1346 (set-frame-parameter frame 'mdw-full-screen-saved saved))
1347 (modify-frame-parameters frame mdw-full-screen-parameters)
1348 (set-frame-parameter frame 'fullscreen 'fullboth)))))
1349
6132bc01
MW
1350;;;--------------------------------------------------------------------------
1351;;; General fontification.
f617db13 1352
bc149706
MW
1353(make-face 'mdw-virgin-face)
1354
1e7a9479
MW
1355(defmacro mdw-define-face (name &rest body)
1356 "Define a face, and make sure it's actually set as the definition."
1357 (declare (indent 1)
1358 (debug 0))
1359 `(progn
bc149706 1360 (copy-face 'mdw-virgin-face ',name)
1e7a9479
MW
1361 (defvar ,name ',name)
1362 (put ',name 'face-defface-spec ',body)
88cb9c2b 1363 (face-spec-set ',name ',body nil)))
1e7a9479
MW
1364
1365(mdw-define-face default
1366 (((type w32)) :family "courier new" :height 85)
caa63513 1367 (((type x)) :family "6x13" :foundry "trad" :height 130)
db10ce0a
MW
1368 (((type color)) :foreground "white" :background "black")
1369 (t nil))
1e7a9479
MW
1370(mdw-define-face fixed-pitch
1371 (((type w32)) :family "courier new" :height 85)
caa63513 1372 (((type x)) :family "6x13" :foundry "trad" :height 130)
1e7a9479 1373 (t :foreground "white" :background "black"))
e8ea88ba 1374(if (mdw-emacs-version-p 23)
c383eb8a
MW
1375 (mdw-define-face variable-pitch
1376 (((type x)) :family "sans" :height 100))
1377 (mdw-define-face variable-pitch
3f001ff6 1378 (((type x)) :family "helvetica" :height 90)))
1e7a9479 1379(mdw-define-face region
fefae026
MW
1380 (((min-colors 64)) :background "grey30")
1381 (((class color)) :background "blue")
4833e35c 1382 (t :inverse-video t))
fa156643 1383(mdw-define-face match
fefae026
MW
1384 (((class color)) :background "blue")
1385 (t :inverse-video t))
c6fe19d5 1386(mdw-define-face mc/cursor-face
fefae026
MW
1387 (((class color)) :background "red")
1388 (t :inverse-video t))
1e7a9479
MW
1389(mdw-define-face minibuffer-prompt
1390 (t :weight bold))
1391(mdw-define-face mode-line
db10ce0a
MW
1392 (((class color)) :foreground "blue" :background "yellow"
1393 :box (:line-width 1 :style released-button))
1394 (t :inverse-video t))
1e7a9479 1395(mdw-define-face mode-line-inactive
db10ce0a
MW
1396 (((class color)) :foreground "yellow" :background "blue"
1397 :box (:line-width 1 :style released-button))
1398 (t :inverse-video t))
ae0a853f
MW
1399(mdw-define-face nobreak-space
1400 (((type tty)))
1401 (t :inherit escape-glyph :underline t))
1e7a9479
MW
1402(mdw-define-face scroll-bar
1403 (t :foreground "black" :background "lightgrey"))
1404(mdw-define-face fringe
1405 (t :foreground "yellow"))
c383eb8a 1406(mdw-define-face show-paren-match
9cf75a93
MW
1407 (((min-colors 64)) :background "darkgreen")
1408 (((class color)) :background "green")
db10ce0a 1409 (t :underline t))
c383eb8a 1410(mdw-define-face show-paren-mismatch
db10ce0a
MW
1411 (((class color)) :background "red")
1412 (t :inverse-video t))
1e7a9479 1413(mdw-define-face highlight
fefae026
MW
1414 (((min-colors 64)) :background "DarkSeaGreen4")
1415 (((class color)) :background "cyan")
db10ce0a 1416 (t :inverse-video t))
1e7a9479
MW
1417
1418(mdw-define-face holiday-face
1419 (t :background "red"))
1420(mdw-define-face calendar-today-face
1421 (t :foreground "yellow" :weight bold))
1422
1423(mdw-define-face comint-highlight-prompt
1424 (t :weight bold))
5fd055c2
MW
1425(mdw-define-face comint-highlight-input
1426 (t nil))
1e7a9479 1427
2e97e639
MW
1428(mdw-define-face ido-subdir
1429 (t :foreground "cyan" :weight bold))
1430
e0e2aca3
MW
1431(mdw-define-face dired-directory
1432 (t :foreground "cyan" :weight bold))
1433(mdw-define-face dired-symlink
1434 (t :foreground "cyan"))
1435(mdw-define-face dired-perm-write
1436 (t nil))
1437
1e7a9479 1438(mdw-define-face trailing-whitespace
db10ce0a
MW
1439 (((class color)) :background "red")
1440 (t :inverse-video t))
33aa287b
MW
1441(mdw-define-face whitespace-line
1442 (((class color)) :background "darkred")
a52bc3ca 1443 (t :inverse-video t))
1e7a9479 1444(mdw-define-face mdw-punct-face
fefae026
MW
1445 (((min-colors 64)) :foreground "burlywood2")
1446 (((class color)) :foreground "yellow"))
1e7a9479
MW
1447(mdw-define-face mdw-number-face
1448 (t :foreground "yellow"))
52bcde59 1449(mdw-define-face mdw-trivial-face)
1e7a9479 1450(mdw-define-face font-lock-function-name-face
c383eb8a 1451 (t :slant italic))
1e7a9479
MW
1452(mdw-define-face font-lock-keyword-face
1453 (t :weight bold))
1454(mdw-define-face font-lock-constant-face
1455 (t :slant italic))
1456(mdw-define-face font-lock-builtin-face
1457 (t :weight bold))
07965a39
MW
1458(mdw-define-face font-lock-type-face
1459 (t :weight bold :slant italic))
1e7a9479
MW
1460(mdw-define-face font-lock-reference-face
1461 (t :weight bold))
1462(mdw-define-face font-lock-variable-name-face
1463 (t :slant italic))
1464(mdw-define-face font-lock-comment-delimiter-face
fefae026
MW
1465 (((min-colors 64)) :slant italic :foreground "SeaGreen1")
1466 (((class color)) :foreground "green")
1467 (t :weight bold))
1e7a9479 1468(mdw-define-face font-lock-comment-face
fefae026
MW
1469 (((min-colors 64)) :slant italic :foreground "SeaGreen1")
1470 (((class color)) :foreground "green")
1471 (t :weight bold))
1e7a9479 1472(mdw-define-face font-lock-string-face
fefae026
MW
1473 (((min-colors 64)) :foreground "SkyBlue1")
1474 (((class color)) :foreground "cyan")
1475 (t :weight bold))
898c7efb 1476
1e7a9479
MW
1477(mdw-define-face message-separator
1478 (t :background "red" :foreground "white" :weight bold))
1479(mdw-define-face message-cited-text
1480 (default :slant italic)
fefae026
MW
1481 (((min-colors 64)) :foreground "SkyBlue1")
1482 (((class color)) :foreground "cyan"))
1e7a9479 1483(mdw-define-face message-header-cc
4790fcb7 1484 (default :slant italic)
fefae026
MW
1485 (((min-colors 64)) :foreground "SeaGreen1")
1486 (((class color)) :foreground "green"))
1e7a9479 1487(mdw-define-face message-header-newsgroups
4790fcb7 1488 (default :slant italic)
fefae026
MW
1489 (((min-colors 64)) :foreground "SeaGreen1")
1490 (((class color)) :foreground "green"))
1e7a9479 1491(mdw-define-face message-header-subject
fefae026
MW
1492 (((min-colors 64)) :foreground "SeaGreen1")
1493 (((class color)) :foreground "green"))
1e7a9479 1494(mdw-define-face message-header-to
fefae026
MW
1495 (((min-colors 64)) :foreground "SeaGreen1")
1496 (((class color)) :foreground "green"))
1e7a9479 1497(mdw-define-face message-header-xheader
4790fcb7 1498 (default :slant italic)
fefae026
MW
1499 (((min-colors 64)) :foreground "SeaGreen1")
1500 (((class color)) :foreground "green"))
1e7a9479 1501(mdw-define-face message-header-other
4790fcb7 1502 (default :slant italic)
fefae026
MW
1503 (((min-colors 64)) :foreground "SeaGreen1")
1504 (((class color)) :foreground "green"))
1e7a9479 1505(mdw-define-face message-header-name
4790fcb7 1506 (default :weight bold)
fefae026
MW
1507 (((min-colors 64)) :foreground "SeaGreen1")
1508 (((class color)) :foreground "green"))
4790fcb7 1509
69498691
MW
1510(mdw-define-face which-func
1511 (t nil))
1e7a9479 1512
4790fcb7
MW
1513(mdw-define-face gnus-header-name
1514 (default :weight bold)
fefae026
MW
1515 (((min-colors 64)) :foreground "SeaGreen1")
1516 (((class color)) :foreground "green"))
4790fcb7 1517(mdw-define-face gnus-header-subject
fefae026
MW
1518 (((min-colors 64)) :foreground "SeaGreen1")
1519 (((class color)) :foreground "green"))
4790fcb7 1520(mdw-define-face gnus-header-from
fefae026
MW
1521 (((min-colors 64)) :foreground "SeaGreen1")
1522 (((class color)) :foreground "green"))
4790fcb7 1523(mdw-define-face gnus-header-to
fefae026
MW
1524 (((min-colors 64)) :foreground "SeaGreen1")
1525 (((class color)) :foreground "green"))
4790fcb7
MW
1526(mdw-define-face gnus-header-content
1527 (default :slant italic)
fefae026
MW
1528 (((min-colors 64)) :foreground "SeaGreen1")
1529 (((class color)) :foreground "green"))
4790fcb7
MW
1530
1531(mdw-define-face gnus-cite-1
fefae026
MW
1532 (((min-colors 64)) :foreground "SkyBlue1")
1533 (((class color)) :foreground "cyan"))
4790fcb7 1534(mdw-define-face gnus-cite-2
fefae026
MW
1535 (((min-colors 64)) :foreground "RoyalBlue2")
1536 (((class color)) :foreground "blue"))
4790fcb7 1537(mdw-define-face gnus-cite-3
fefae026
MW
1538 (((min-colors 64)) :foreground "MediumOrchid")
1539 (((class color)) :foreground "magenta"))
4790fcb7 1540(mdw-define-face gnus-cite-4
fefae026
MW
1541 (((min-colors 64)) :foreground "firebrick2")
1542 (((class color)) :foreground "red"))
4790fcb7 1543(mdw-define-face gnus-cite-5
fefae026
MW
1544 (((min-colors 64)) :foreground "burlywood2")
1545 (((class color)) :foreground "yellow"))
4790fcb7 1546(mdw-define-face gnus-cite-6
fefae026
MW
1547 (((min-colors 64)) :foreground "SeaGreen1")
1548 (((class color)) :foreground "green"))
4790fcb7 1549(mdw-define-face gnus-cite-7
fefae026
MW
1550 (((min-colors 64)) :foreground "SlateBlue1")
1551 (((class color)) :foreground "cyan"))
4790fcb7 1552(mdw-define-face gnus-cite-8
fefae026
MW
1553 (((min-colors 64)) :foreground "RoyalBlue2")
1554 (((class color)) :foreground "blue"))
4790fcb7 1555(mdw-define-face gnus-cite-9
fefae026
MW
1556 (((min-colors 64)) :foreground "purple2")
1557 (((class color)) :foreground "magenta"))
4790fcb7 1558(mdw-define-face gnus-cite-10
fefae026
MW
1559 (((min-colors 64)) :foreground "DarkOrange2")
1560 (((class color)) :foreground "red"))
4790fcb7
MW
1561(mdw-define-face gnus-cite-11
1562 (t :foreground "grey"))
1563
2f238de8
MW
1564(mdw-define-face diff-header
1565 (t nil))
1e7a9479
MW
1566(mdw-define-face diff-index
1567 (t :weight bold))
1568(mdw-define-face diff-file-header
1569 (t :weight bold))
1570(mdw-define-face diff-hunk-header
fefae026
MW
1571 (((min-colors 64)) :foreground "SkyBlue1")
1572 (((class color)) :foreground "cyan"))
1e7a9479 1573(mdw-define-face diff-function
fefae026
MW
1574 (default :weight bold)
1575 (((min-colors 64)) :foreground "SkyBlue1")
1576 (((class color)) :foreground "cyan"))
1e7a9479 1577(mdw-define-face diff-header
fefae026 1578 (((min-colors 64)) :background "grey10"))
1e7a9479 1579(mdw-define-face diff-added
fefae026 1580 (((class color)) :foreground "green"))
1e7a9479 1581(mdw-define-face diff-removed
fefae026 1582 (((class color)) :foreground "red"))
5fd055c2
MW
1583(mdw-define-face diff-context
1584 (t nil))
2f238de8 1585(mdw-define-face diff-refine-change
fefae026 1586 (((min-colors 64)) :background "RoyalBlue4")
b31f422b 1587 (t :underline t))
5f454d3e 1588(mdw-define-face diff-refine-removed
fefae026 1589 (((min-colors 64)) :background "#500")
5f454d3e
MW
1590 (t :underline t))
1591(mdw-define-face diff-refine-added
fefae026 1592 (((min-colors 64)) :background "#050")
5f454d3e 1593 (t :underline t))
1e7a9479 1594
a62d0541
MW
1595(setq ediff-force-faces t)
1596(mdw-define-face ediff-current-diff-A
fefae026
MW
1597 (((min-colors 64)) :background "darkred")
1598 (((class color)) :background "red")
a62d0541
MW
1599 (t :inverse-video t))
1600(mdw-define-face ediff-fine-diff-A
fefae026
MW
1601 (((min-colors 64)) :background "red3")
1602 (((class color)) :inverse-video t)
a62d0541
MW
1603 (t :inverse-video nil))
1604(mdw-define-face ediff-even-diff-A
fefae026 1605 (((min-colors 64)) :background "#300"))
a62d0541 1606(mdw-define-face ediff-odd-diff-A
fefae026 1607 (((min-colors 64)) :background "#300"))
a62d0541 1608(mdw-define-face ediff-current-diff-B
fefae026
MW
1609 (((min-colors 64)) :background "darkgreen")
1610 (((class color)) :background "magenta")
a62d0541
MW
1611 (t :inverse-video t))
1612(mdw-define-face ediff-fine-diff-B
fefae026
MW
1613 (((min-colors 64)) :background "green4")
1614 (((class color)) :inverse-video t)
a62d0541
MW
1615 (t :inverse-video nil))
1616(mdw-define-face ediff-even-diff-B
fefae026 1617 (((min-colors 64)) :background "#020"))
a62d0541 1618(mdw-define-face ediff-odd-diff-B
fefae026 1619 (((min-colors 64)) :background "#020"))
a62d0541 1620(mdw-define-face ediff-current-diff-C
fefae026
MW
1621 (((min-colors 64)) :background "darkblue")
1622 (((class color)) :background "blue")
a62d0541
MW
1623 (t :inverse-video t))
1624(mdw-define-face ediff-fine-diff-C
fefae026
MW
1625 (((min-colors 64)) :background "blue1")
1626 (((class color)) :inverse-video t)
a62d0541
MW
1627 (t :inverse-video nil))
1628(mdw-define-face ediff-even-diff-C
fefae026 1629 (((min-colors 64)) :background "#004"))
a62d0541 1630(mdw-define-face ediff-odd-diff-C
fefae026 1631 (((min-colors 64)) :background "#004"))
a62d0541 1632(mdw-define-face ediff-current-diff-Ancestor
fefae026
MW
1633 (((min-colors 64)) :background "#630")
1634 (((class color)) :background "blue")
a62d0541
MW
1635 (t :inverse-video t))
1636(mdw-define-face ediff-even-diff-Ancestor
fefae026 1637 (((min-colors 64)) :background "#320"))
a62d0541 1638(mdw-define-face ediff-odd-diff-Ancestor
fefae026 1639 (((min-colors 64)) :background "#320"))
a62d0541 1640
53f93f0d 1641(mdw-define-face magit-hash
fefae026
MW
1642 (((min-colors 64)) :foreground "grey40")
1643 (((class color)) :foreground "blue"))
53f93f0d 1644(mdw-define-face magit-diff-hunk-heading
fefae026
MW
1645 (((min-colors 64)) :foreground "grey70" :background "grey25")
1646 (((class color)) :foreground "yellow"))
53f93f0d 1647(mdw-define-face magit-diff-hunk-heading-highlight
fefae026
MW
1648 (((min-colors 64)) :foreground "grey70" :background "grey35")
1649 (((class color)) :foreground "yellow" :background "blue"))
53f93f0d 1650(mdw-define-face magit-diff-added
fefae026
MW
1651 (((min-colors 64)) :foreground "#ddffdd" :background "#335533")
1652 (((class color)) :foreground "green"))
53f93f0d 1653(mdw-define-face magit-diff-added-highlight
fefae026
MW
1654 (((min-colors 64)) :foreground "#cceecc" :background "#336633")
1655 (((class color)) :foreground "green" :background "blue"))
53f93f0d 1656(mdw-define-face magit-diff-removed
fefae026
MW
1657 (((min-colors 64)) :foreground "#ffdddd" :background "#553333")
1658 (((class color)) :foreground "red"))
53f93f0d 1659(mdw-define-face magit-diff-removed-highlight
fefae026
MW
1660 (((min-colors 64)) :foreground "#eecccc" :background "#663333")
1661 (((class color)) :foreground "red" :background "blue"))
857045c6
MW
1662(mdw-define-face magit-blame-heading
1663 (((min-colors 64)) :foreground "white" :background "grey25"
1664 :weight normal :slant normal)
1665 (((class color)) :foreground "white" :background "blue"
1666 :weight normal :slant normal))
1667(mdw-define-face magit-blame-name
1668 (t :inherit magit-blame-heading :slant italic))
1669(mdw-define-face magit-blame-date
1670 (((min-colors 64)) :inherit magit-blame-heading :foreground "grey60")
1671 (((class color)) :inherit magit-blame-heading :foreground "cyan"))
1672(mdw-define-face magit-blame-summary
1673 (t :inherit magit-blame-heading :weight bold))
53f93f0d 1674
ad305d7e 1675(mdw-define-face dylan-header-background
fefae026
MW
1676 (((min-colors 64)) :background "NavyBlue")
1677 (((class color)) :background "blue"))
ad305d7e 1678
e1b8de18
MW
1679(mdw-define-face erc-input-face
1680 (t :foreground "red"))
1681
1e7a9479
MW
1682(mdw-define-face woman-bold
1683 (t :weight bold))
1684(mdw-define-face woman-italic
1685 (t :slant italic))
1686
5a83259f
MW
1687(eval-after-load "rst"
1688 '(progn
1689 (mdw-define-face rst-level-1-face
1690 (t :foreground "SkyBlue1" :weight bold))
1691 (mdw-define-face rst-level-2-face
1692 (t :foreground "SeaGreen1" :weight bold))
1693 (mdw-define-face rst-level-3-face
1694 (t :weight bold))
1695 (mdw-define-face rst-level-4-face
1696 (t :slant italic))
1697 (mdw-define-face rst-level-5-face
1698 (t :underline t))
1699 (mdw-define-face rst-level-6-face
1700 ())))
4f251391 1701
1e7a9479
MW
1702(mdw-define-face p4-depot-added-face
1703 (t :foreground "green"))
1704(mdw-define-face p4-depot-branch-op-face
1705 (t :foreground "yellow"))
1706(mdw-define-face p4-depot-deleted-face
1707 (t :foreground "red"))
1708(mdw-define-face p4-depot-unmapped-face
1709 (t :foreground "SkyBlue1"))
1710(mdw-define-face p4-diff-change-face
1711 (t :foreground "yellow"))
1712(mdw-define-face p4-diff-del-face
1713 (t :foreground "red"))
1714(mdw-define-face p4-diff-file-face
1715 (t :foreground "SkyBlue1"))
1716(mdw-define-face p4-diff-head-face
1717 (t :background "grey10"))
1718(mdw-define-face p4-diff-ins-face
1719 (t :foreground "green"))
1720
4c39e530
MW
1721(mdw-define-face w3m-anchor-face
1722 (t :foreground "SkyBlue1" :underline t))
1723(mdw-define-face w3m-arrived-anchor-face
1724 (t :foreground "SkyBlue1" :underline t))
1725
1e7a9479
MW
1726(mdw-define-face whizzy-slice-face
1727 (t :background "grey10"))
1728(mdw-define-face whizzy-error-face
1729 (t :background "darkred"))
f617db13 1730
5fedb342
MW
1731;; Ellipses used to indicate hidden text (and similar).
1732(mdw-define-face mdw-ellipsis-face
1733 (((type tty)) :foreground "blue") (t :foreground "grey60"))
c11ac343 1734(let ((dollar (make-glyph-code ?$ 'mdw-ellipsis-face))
a8a7976a 1735 (backslash (make-glyph-code ?\\ 'mdw-ellipsis-face))
c11ac343
MW
1736 (dot (make-glyph-code ?. 'mdw-ellipsis-face))
1737 (bar (make-glyph-code ?| mdw-ellipsis-face)))
1738 (set-display-table-slot standard-display-table 0 dollar)
1739 (set-display-table-slot standard-display-table 1 backslash)
5fedb342 1740 (set-display-table-slot standard-display-table 4
c11ac343
MW
1741 (vector dot dot dot))
1742 (set-display-table-slot standard-display-table 5 bar))
5fedb342 1743
c70e3179
MW
1744;;;--------------------------------------------------------------------------
1745;;; Where is point?
1746
6a2d05ae 1747(mdw-define-face mdw-point-overlay-face
3f32879e 1748 (((type graphic)))
c70e3179
MW
1749 (((min-colors 64)) :background "darkblue")
1750 (((class color)) :background "blue")
1751 (((type tty) (class mono)) :inverse-video t))
1752
1753(defvar mdw-point-overlay-fringe-display '(vertical-bar . vertical-bar))
1754
1755(defun mdw-configure-point-overlay ()
1756 (let ((ov (make-overlay 0 0)))
1757 (overlay-put ov 'priority 0)
1758 (let* ((fringe (or mdw-point-overlay-fringe-display (cons nil nil)))
1759 (left (car fringe)) (right (cdr fringe))
1760 (s ""))
1761 (when left
1762 (let ((ss "."))
1763 (put-text-property 0 1 'display `(left-fringe ,left) ss)
1764 (setq s (concat s ss))))
1765 (when right
1766 (let ((ss "."))
1767 (put-text-property 0 1 'display `(right-fringe ,right) ss)
1768 (setq s (concat s ss))))
1769 (when (or left right)
1770 (overlay-put ov 'before-string s)))
6a2d05ae 1771 (overlay-put ov 'face 'mdw-point-overlay-face)
c70e3179
MW
1772 (delete-overlay ov)
1773 ov))
1774
1775(defvar mdw-point-overlay (mdw-configure-point-overlay)
1776 "An overlay used for showing where point is in the selected window.")
1777(defun mdw-reconfigure-point-overlay ()
1778 (interactive)
1779 (setq mdw-point-overlay (mdw-configure-point-overlay)))
1780
1781(defun mdw-remove-point-overlay ()
1782 "Remove the current-point overlay."
1783 (delete-overlay mdw-point-overlay))
1784
1785(defun mdw-update-point-overlay ()
1786 "Mark the current point position with an overlay."
1787 (if (not mdw-point-overlay-mode)
1788 (mdw-remove-point-overlay)
1789 (overlay-put mdw-point-overlay 'window (selected-window))
1790 (move-overlay mdw-point-overlay
1791 (line-beginning-position)
1792 (+ (line-end-position) 1))))
1793
1794(defvar mdw-point-overlay-buffers nil
1795 "List of buffers using `mdw-point-overlay-mode'.")
1796
1797(define-minor-mode mdw-point-overlay-mode
1798 "Indicate current line with an overlay."
1799 :global nil
1800 (let ((buffer (current-buffer)))
1801 (setq mdw-point-overlay-buffers
1802 (mapcan (lambda (buf)
1803 (if (and (buffer-live-p buf)
1804 (not (eq buf buffer)))
1805 (list buf)))
1806 mdw-point-overlay-buffers))
1807 (if mdw-point-overlay-mode
1808 (setq mdw-point-overlay-buffers
1809 (cons buffer mdw-point-overlay-buffers))))
1810 (cond (mdw-point-overlay-buffers
1811 (add-hook 'pre-command-hook 'mdw-remove-point-overlay)
1812 (add-hook 'post-command-hook 'mdw-update-point-overlay))
1813 (t
1814 (mdw-remove-point-overlay)
1815 (remove-hook 'pre-command-hook 'mdw-remove-point-overlay)
1816 (remove-hook 'post-command-hook 'mdw-update-point-overlay))))
1817
1818(define-globalized-minor-mode mdw-global-point-overlay-mode
1819 mdw-point-overlay-mode
1820 (lambda () (if (not (minibufferp)) (mdw-point-overlay-mode t))))
1821
6132bc01
MW
1822;;;--------------------------------------------------------------------------
1823;;; C programming configuration.
f617db13 1824
6132bc01 1825;; Make C indentation nice.
f617db13 1826
f50c1bed
MW
1827(defun mdw-c-lineup-arglist (langelem)
1828 "Hack for DWIMmery in c-lineup-arglist."
1829 (if (save-excursion
1830 (c-block-in-arglist-dwim (c-langelem-2nd-pos c-syntactic-element)))
1831 0
1832 (c-lineup-arglist langelem)))
1833
1834(defun mdw-c-indent-extern-mumble (langelem)
1835 "Indent `extern \"...\" {' lines."
1836 (save-excursion
1837 (back-to-indentation)
1838 (if (looking-at
1839 "\\s-*\\<extern\\>\\s-*\"\\([^\\\\\"]+\\|\\.\\)*\"\\s-*{")
1840 c-basic-offset
1841 nil)))
1842
b521d36a
MW
1843(defun mdw-c-indent-arglist-nested (langelem)
1844 "Indent continued argument lists.
1845If we've nested more than one argument list, then only introduce a single
1846indentation anyway."
1847 (let ((context c-syntactic-context)
1848 (pos (c-langelem-2nd-pos c-syntactic-element))
1849 (should-indent-p t))
1850 (while (and context
1851 (eq (caar context) 'arglist-cont-nonempty))
1852 (when (and (= (caddr (pop context)) pos)
1853 context
1854 (memq (caar context) '(arglist-intro
1855 arglist-cont-nonempty)))
1856 (setq should-indent-p nil)))
1857 (if should-indent-p '+ 0)))
1858
c56296d0
MW
1859(defvar mdw-define-c-styles-hook nil
1860 "Hook run when `cc-mode' starts up to define styles.")
1861
1862(defmacro mdw-define-c-style (name &rest assocs)
1863 "Define a C style, called NAME (a symbol), setting ASSOCs.
1864A function, named `mdw-define-c-style/NAME', is defined to actually install
1865the style using `c-add-style', and added to the hook
1866`mdw-define-c-styles-hook'. If CC Mode is already loaded, then the style is
1867set."
1868 (declare (indent defun))
1869 (let* ((name-string (symbol-name name))
1870 (func (intern (concat "mdw-define-c-style/" name-string))))
1871 `(progn
1872 (defun ,func () (c-add-style ,name-string ',assocs))
1873 (and (featurep 'cc-mode) (,func))
1874 (add-hook 'mdw-define-c-styles-hook ',func))))
1875
1876(eval-after-load "cc-mode"
1877 '(run-hooks 'mdw-define-c-styles-hook))
1878
b521d36a
MW
1879(mdw-define-c-style mdw-trustonic-c
1880 (c-basic-offset . 4)
1881 (comment-column . 0)
1882 (c-indent-comment-alist (anchored-comment . (column . 0))
1883 (end-block . (space . 1))
1884 (cpp-end-block . (space . 1))
1885 (other . (space . 1)))
1886 (c-class-key . "class")
1887 (c-backslash-column . 0)
1888 (c-auto-align-backslashes . nil)
1889 (c-label-minimum-indentation . 0)
1890 (c-offsets-alist (substatement-open . (add 0 c-indent-one-line-block))
1891 (defun-open . (add 0 c-indent-one-line-block))
1892 (arglist-cont-nonempty . mdw-c-indent-arglist-nested)
1893 (topmost-intro . mdw-c-indent-extern-mumble)
1894 (cpp-define-intro . 0)
1895 (knr-argdecl . 0)
1896 (inextern-lang . [0])
1897 (label . 0)
1898 (case-label . +)
b07634df 1899 (access-label . -2)
b521d36a
MW
1900 (inclass . +)
1901 (inline-open . ++)
1902 (statement-cont . +)
1903 (statement-case-intro . +)))
1904
c56296d0
MW
1905(mdw-define-c-style mdw-c
1906 (c-basic-offset . 2)
1907 (comment-column . 40)
1908 (c-class-key . "class")
1909 (c-backslash-column . 72)
1910 (c-label-minimum-indentation . 0)
1911 (c-offsets-alist (substatement-open . (add 0 c-indent-one-line-block))
1912 (defun-open . (add 0 c-indent-one-line-block))
1913 (arglist-cont-nonempty . mdw-c-lineup-arglist)
1914 (topmost-intro . mdw-c-indent-extern-mumble)
1915 (cpp-define-intro . 0)
1916 (knr-argdecl . 0)
1917 (inextern-lang . [0])
1918 (label . 0)
1919 (case-label . +)
1920 (access-label . -)
1921 (inclass . +)
1922 (inline-open . ++)
1923 (statement-cont . +)
1924 (statement-case-intro . +)))
1925
1926(defun mdw-set-default-c-style (modes style)
1927 "Update the default CC Mode style for MODES to be STYLE.
1928
1929MODES may be a list of major mode names or a singleton. STYLE is a style
1930name, as a symbol."
1931 (let ((modes (if (listp modes) modes (list modes)))
1932 (style (symbol-name style)))
1933 (setq c-default-style
1934 (append (mapcar (lambda (mode)
1935 (cons mode style))
1936 modes)
1937 (remove-if (lambda (assoc)
1938 (memq (car assoc) modes))
1939 (if (listp c-default-style)
1940 c-default-style
1941 (list (cons 'other c-default-style))))))))
1942(setq c-default-style "mdw-c")
1943
1944(mdw-set-default-c-style '(c-mode c++-mode) 'mdw-c)
f617db13 1945
0e7d960b
MW
1946(defvar mdw-c-comment-fill-prefix
1947 `((,(concat "\\([ \t]*/?\\)"
a7474429 1948 "\\(\\*\\|//\\)"
0e7d960b
MW
1949 "\\([ \t]*\\)"
1950 "\\([A-Za-z]+:[ \t]*\\)?"
1951 mdw-hanging-indents)
1952 (pad . 1) (match . 2) (pad . 3) (pad . 4) (pad . 5)))
1953 "Fill prefix matching C comments (both kinds).")
1954
f617db13
MW
1955(defun mdw-fontify-c-and-c++ ()
1956
6132bc01 1957 ;; Fiddle with some syntax codes.
f617db13
MW
1958 (modify-syntax-entry ?* ". 23")
1959 (modify-syntax-entry ?/ ". 124b")
1960 (modify-syntax-entry ?\n "> b")
1961
6132bc01 1962 ;; Other stuff.
c56296d0 1963 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
f617db13 1964
6132bc01 1965 ;; Now define things to be fontified.
02109a0d 1966 (make-local-variable 'font-lock-keywords)
f617db13 1967 (let ((c-keywords
fe307a8c
MW
1968 (mdw-regexps "alignas" ;C11 macro, C++11
1969 "alignof" ;C++11
1970 "and" ;C++, C95 macro
0681f29e 1971 "and_eq" ;C++, C95 macro
7b84c078 1972 "asm" ;K&R, C++, GCC
fe307a8c 1973 "atomic" ;C11 macro, C++11 template type
26f18bd1 1974 "auto" ;K&R, C89
0681f29e
MW
1975 "bitand" ;C++, C95 macro
1976 "bitor" ;C++, C95 macro
d4783d9c 1977 "bool" ;C++, C99 macro
26f18bd1
MW
1978 "break" ;K&R, C89
1979 "case" ;K&R, C89
1980 "catch" ;C++
1981 "char" ;K&R, C89
fe307a8c
MW
1982 "char16_t" ;C++11, C11 library type
1983 "char32_t" ;C++11, C11 library type
26f18bd1 1984 "class" ;C++
d4783d9c 1985 "complex" ;C99 macro, C++ template type
0681f29e 1986 "compl" ;C++, C95 macro
26f18bd1 1987 "const" ;C89
fe307a8c 1988 "constexpr" ;C++11
26f18bd1
MW
1989 "const_cast" ;C++
1990 "continue" ;K&R, C89
fe307a8c 1991 "decltype" ;C++11
26f18bd1
MW
1992 "defined" ;C89 preprocessor
1993 "default" ;K&R, C89
1994 "delete" ;C++
1995 "do" ;K&R, C89
1996 "double" ;K&R, C89
1997 "dynamic_cast" ;C++
1998 "else" ;K&R, C89
1999 ;; "entry" ;K&R -- never used
2000 "enum" ;C89
2001 "explicit" ;C++
2002 "export" ;C++
2003 "extern" ;K&R, C89
2004 "float" ;K&R, C89
2005 "for" ;K&R, C89
2006 ;; "fortran" ;K&R
2007 "friend" ;C++
2008 "goto" ;K&R, C89
2009 "if" ;K&R, C89
d4783d9c
MW
2010 "imaginary" ;C99 macro
2011 "inline" ;C++, C99, GCC
26f18bd1
MW
2012 "int" ;K&R, C89
2013 "long" ;K&R, C89
2014 "mutable" ;C++
2015 "namespace" ;C++
2016 "new" ;C++
fe307a8c
MW
2017 "noexcept" ;C++11
2018 "noreturn" ;C11 macro
0681f29e
MW
2019 "not" ;C++, C95 macro
2020 "not_eq" ;C++, C95 macro
fe307a8c 2021 "nullptr" ;C++11
26f18bd1 2022 "operator" ;C++
0681f29e
MW
2023 "or" ;C++, C95 macro
2024 "or_eq" ;C++, C95 macro
26f18bd1
MW
2025 "private" ;C++
2026 "protected" ;C++
2027 "public" ;C++
2028 "register" ;K&R, C89
8d6d55b9 2029 "reinterpret_cast" ;C++
d4783d9c 2030 "restrict" ;C99
8d6d55b9
MW
2031 "return" ;K&R, C89
2032 "short" ;K&R, C89
2033 "signed" ;C89
2034 "sizeof" ;K&R, C89
2035 "static" ;K&R, C89
fe307a8c 2036 "static_assert" ;C11 macro, C++11
8d6d55b9
MW
2037 "static_cast" ;C++
2038 "struct" ;K&R, C89
2039 "switch" ;K&R, C89
2040 "template" ;C++
8d6d55b9 2041 "throw" ;C++
8d6d55b9 2042 "try" ;C++
fe307a8c 2043 "thread_local" ;C11 macro, C++11
8d6d55b9
MW
2044 "typedef" ;C89
2045 "typeid" ;C++
2046 "typeof" ;GCC
2047 "typename" ;C++
2048 "union" ;K&R, C89
2049 "unsigned" ;K&R, C89
2050 "using" ;C++
2051 "virtual" ;C++
2052 "void" ;C89
2053 "volatile" ;C89
2054 "wchar_t" ;C++, C89 library type
2055 "while" ;K&R, C89
0681f29e
MW
2056 "xor" ;C++, C95 macro
2057 "xor_eq" ;C++, C95 macro
fe307a8c
MW
2058 "_Alignas" ;C11
2059 "_Alignof" ;C11
2060 "_Atomic" ;C11
d4783d9c
MW
2061 "_Bool" ;C99
2062 "_Complex" ;C99
fe307a8c 2063 "_Generic" ;C11
d4783d9c 2064 "_Imaginary" ;C99
fe307a8c 2065 "_Noreturn" ;C11
d4783d9c 2066 "_Pragma" ;C99 preprocessor
fe307a8c
MW
2067 "_Static_assert" ;C11
2068 "_Thread_local" ;C11
8d6d55b9
MW
2069 "__alignof__" ;GCC
2070 "__asm__" ;GCC
2071 "__attribute__" ;GCC
2072 "__complex__" ;GCC
2073 "__const__" ;GCC
2074 "__extension__" ;GCC
2075 "__imag__" ;GCC
2076 "__inline__" ;GCC
2077 "__label__" ;GCC
2078 "__real__" ;GCC
2079 "__signed__" ;GCC
2080 "__typeof__" ;GCC
2081 "__volatile__" ;GCC
2082 ))
165cecf8 2083 (c-constants
26f18bd1 2084 (mdw-regexps "false" ;C++, C99 macro
165cecf8 2085 "this" ;C++
26f18bd1 2086 "true" ;C++, C99 macro
165cecf8 2087 ))
f617db13 2088 (preprocessor-keywords
8d6d55b9
MW
2089 (mdw-regexps "assert" "define" "elif" "else" "endif" "error"
2090 "ident" "if" "ifdef" "ifndef" "import" "include"
2091 "line" "pragma" "unassert" "undef" "warning"))
f617db13 2092 (objc-keywords
8d6d55b9
MW
2093 (mdw-regexps "class" "defs" "encode" "end" "implementation"
2094 "interface" "private" "protected" "protocol" "public"
2095 "selector")))
f617db13
MW
2096
2097 (setq font-lock-keywords
2098 (list
f617db13 2099
6132bc01 2100 ;; Fontify include files as strings.
f617db13
MW
2101 (list (concat "^[ \t]*\\#[ \t]*"
2102 "\\(include\\|import\\)"
2103 "[ \t]*\\(<[^>]+\\(>\\|\\)\\)")
2104 '(2 font-lock-string-face))
2105
6132bc01 2106 ;; Preprocessor directives are `references'?.
f617db13
MW
2107 (list (concat "^\\([ \t]*#[ \t]*\\(\\("
2108 preprocessor-keywords
2109 "\\)\\>\\|[0-9]+\\|$\\)\\)")
2110 '(1 font-lock-keyword-face))
2111
6132bc01 2112 ;; Handle the keywords defined above.
f617db13
MW
2113 (list (concat "@\\<\\(" objc-keywords "\\)\\>")
2114 '(0 font-lock-keyword-face))
2115
2116 (list (concat "\\<\\(" c-keywords "\\)\\>")
2117 '(0 font-lock-keyword-face))
2118
165cecf8
MW
2119 (list (concat "\\<\\(" c-constants "\\)\\>")
2120 '(0 font-lock-variable-name-face))
2121
6132bc01 2122 ;; Handle numbers too.
f617db13
MW
2123 ;;
2124 ;; This looks strange, I know. It corresponds to the
2125 ;; preprocessor's idea of what a number looks like, rather than
2126 ;; anything sensible.
f617db13
MW
2127 (list (concat "\\(\\<[0-9]\\|\\.[0-9]\\)"
2128 "\\([Ee][+-]\\|[0-9A-Za-z_.]\\)*")
2129 '(0 mdw-number-face))
2130
6132bc01 2131 ;; And anything else is punctuation.
f617db13 2132 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2133 '(0 mdw-punct-face))))))
f617db13 2134
fb16ed85
MW
2135(define-derived-mode sod-mode c-mode "Sod"
2136 "Major mode for editing Sod code.")
2137(push '("\\.sod$" . sod-mode) auto-mode-alist)
2138
6132bc01
MW
2139;;;--------------------------------------------------------------------------
2140;;; AP calc mode.
f617db13 2141
e7186cbe
MW
2142(define-derived-mode apcalc-mode c-mode "AP Calc"
2143 "Major mode for editing Calc code.")
f617db13
MW
2144
2145(defun mdw-fontify-apcalc ()
2146
6132bc01 2147 ;; Fiddle with some syntax codes.
f617db13
MW
2148 (modify-syntax-entry ?* ". 23")
2149 (modify-syntax-entry ?/ ". 14")
2150
6132bc01 2151 ;; Other stuff.
f617db13
MW
2152 (setq comment-start "/* ")
2153 (setq comment-end " */")
0e7d960b 2154 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
f617db13 2155
6132bc01 2156 ;; Now define things to be fontified.
02109a0d 2157 (make-local-variable 'font-lock-keywords)
f617db13 2158 (let ((c-keywords
8d6d55b9
MW
2159 (mdw-regexps "break" "case" "cd" "continue" "define" "default"
2160 "do" "else" "exit" "for" "global" "goto" "help" "if"
2161 "local" "mat" "obj" "print" "quit" "read" "return"
2162 "show" "static" "switch" "while" "write")))
f617db13
MW
2163
2164 (setq font-lock-keywords
2165 (list
f617db13 2166
6132bc01 2167 ;; Handle the keywords defined above.
f617db13
MW
2168 (list (concat "\\<\\(" c-keywords "\\)\\>")
2169 '(0 font-lock-keyword-face))
2170
6132bc01 2171 ;; Handle numbers too.
f617db13
MW
2172 ;;
2173 ;; This looks strange, I know. It corresponds to the
2174 ;; preprocessor's idea of what a number looks like, rather than
2175 ;; anything sensible.
f617db13
MW
2176 (list (concat "\\(\\<[0-9]\\|\\.[0-9]\\)"
2177 "\\([Ee][+-]\\|[0-9A-Za-z_.]\\)*")
2178 '(0 mdw-number-face))
2179
6132bc01 2180 ;; And anything else is punctuation.
f617db13 2181 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2182 '(0 mdw-punct-face))))))
f617db13 2183
6132bc01
MW
2184;;;--------------------------------------------------------------------------
2185;;; Java programming configuration.
f617db13 2186
6132bc01 2187;; Make indentation nice.
f617db13 2188
c56296d0
MW
2189(mdw-define-c-style mdw-java
2190 (c-basic-offset . 2)
2191 (c-backslash-column . 72)
2192 (c-offsets-alist (substatement-open . 0)
2193 (label . +)
2194 (case-label . +)
2195 (access-label . 0)
2196 (inclass . +)
2197 (statement-case-intro . +)))
2198(mdw-set-default-c-style 'java-mode 'mdw-java)
f617db13 2199
6132bc01 2200;; Declare Java fontification style.
f617db13
MW
2201
2202(defun mdw-fontify-java ()
2203
36eabf61
MW
2204 ;; Fiddle with some syntax codes.
2205 (modify-syntax-entry ?@ ".")
2206 (modify-syntax-entry ?@ "." font-lock-syntax-table)
2207
6132bc01 2208 ;; Other stuff.
0e7d960b 2209 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
f617db13 2210
6132bc01 2211 ;; Now define things to be fontified.
02109a0d 2212 (make-local-variable 'font-lock-keywords)
f617db13 2213 (let ((java-keywords
853d8555
MW
2214 (mdw-regexps "abstract" "assert"
2215 "boolean" "break" "byte"
2216 "case" "catch" "char" "class" "const" "continue"
2217 "default" "do" "double"
2218 "else" "enum" "extends"
2219 "final" "finally" "float" "for"
2220 "goto"
2221 "if" "implements" "import" "instanceof" "int"
2222 "interface"
2223 "long"
2224 "native" "new"
2225 "package" "private" "protected" "public"
2226 "return"
2227 "short" "static" "strictfp" "switch" "synchronized"
2228 "throw" "throws" "transient" "try"
2229 "void" "volatile"
2230 "while"))
8d6d55b9 2231
165cecf8
MW
2232 (java-constants
2233 (mdw-regexps "false" "null" "super" "this" "true")))
f617db13
MW
2234
2235 (setq font-lock-keywords
2236 (list
f617db13 2237
6132bc01 2238 ;; Handle the keywords defined above.
f617db13
MW
2239 (list (concat "\\<\\(" java-keywords "\\)\\>")
2240 '(0 font-lock-keyword-face))
2241
165cecf8
MW
2242 ;; Handle the magic constants defined above.
2243 (list (concat "\\<\\(" java-constants "\\)\\>")
2244 '(0 font-lock-variable-name-face))
2245
6132bc01 2246 ;; Handle numbers too.
f617db13
MW
2247 ;;
2248 ;; The following isn't quite right, but it's close enough.
f617db13
MW
2249 (list (concat "\\<\\("
2250 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2251 "[0-9]+\\(\\.[0-9]*\\|\\)"
2252 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2253 "[lLfFdD]?")
2254 '(0 mdw-number-face))
2255
6132bc01 2256 ;; And anything else is punctuation.
f617db13 2257 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2258 '(0 mdw-punct-face))))))
f617db13 2259
61d63206
MW
2260;;;--------------------------------------------------------------------------
2261;;; Javascript programming configuration.
2262
2263(defun mdw-javascript-style ()
2264 (setq js-indent-level 2)
2265 (setq js-expr-indent-offset 0))
2266
2267(defun mdw-fontify-javascript ()
2268
2269 ;; Other stuff.
2270 (mdw-javascript-style)
2271 (setq js-auto-indent-flag t)
2272
2273 ;; Now define things to be fontified.
2274 (make-local-variable 'font-lock-keywords)
2275 (let ((javascript-keywords
2276 (mdw-regexps "abstract" "boolean" "break" "byte" "case" "catch"
2277 "char" "class" "const" "continue" "debugger" "default"
2278 "delete" "do" "double" "else" "enum" "export" "extends"
2279 "final" "finally" "float" "for" "function" "goto" "if"
2280 "implements" "import" "in" "instanceof" "int"
2281 "interface" "let" "long" "native" "new" "package"
2282 "private" "protected" "public" "return" "short"
2283 "static" "super" "switch" "synchronized" "throw"
2284 "throws" "transient" "try" "typeof" "var" "void"
2285 "volatile" "while" "with" "yield"
2286
2287 "boolean" "byte" "char" "double" "float" "int" "long"
2288 "short" "void"))
2289 (javascript-constants
2290 (mdw-regexps "false" "null" "undefined" "Infinity" "NaN" "true"
2291 "arguments" "this")))
2292
2293 (setq font-lock-keywords
2294 (list
2295
2296 ;; Handle the keywords defined above.
f7856acd 2297 (list (concat "\\_<\\(" javascript-keywords "\\)\\_>")
61d63206
MW
2298 '(0 font-lock-keyword-face))
2299
2300 ;; Handle the predefined constants defined above.
f7856acd 2301 (list (concat "\\_<\\(" javascript-constants "\\)\\_>")
61d63206
MW
2302 '(0 font-lock-variable-name-face))
2303
2304 ;; Handle numbers too.
2305 ;;
2306 ;; The following isn't quite right, but it's close enough.
f7856acd 2307 (list (concat "\\_<\\("
61d63206
MW
2308 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2309 "[0-9]+\\(\\.[0-9]*\\|\\)"
2310 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2311 "[lLfFdD]?")
2312 '(0 mdw-number-face))
2313
2314 ;; And anything else is punctuation.
2315 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2316 '(0 mdw-punct-face))))))
61d63206 2317
ee7c3dea
MW
2318;;;--------------------------------------------------------------------------
2319;;; Scala programming configuration.
2320
2321(defun mdw-fontify-scala ()
2322
7b5903d8
MW
2323 ;; Comment filling.
2324 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
2325
ee7c3dea
MW
2326 ;; Define things to be fontified.
2327 (make-local-variable 'font-lock-keywords)
2328 (let ((scala-keywords
2329 (mdw-regexps "abstract" "case" "catch" "class" "def" "do" "else"
2330 "extends" "final" "finally" "for" "forSome" "if"
2331 "implicit" "import" "lazy" "match" "new" "object"
3f017188
MW
2332 "override" "package" "private" "protected" "return"
2333 "sealed" "throw" "trait" "try" "type" "val"
ee7c3dea
MW
2334 "var" "while" "with" "yield"))
2335 (scala-constants
3f017188 2336 (mdw-regexps "false" "null" "super" "this" "true"))
7b5903d8 2337 (punctuation "[-!%^&*=+:@#~/?\\|`]"))
ee7c3dea
MW
2338
2339 (setq font-lock-keywords
2340 (list
2341
2342 ;; Magical identifiers between backticks.
2343 (list (concat "`\\([^`]+\\)`")
2344 '(1 font-lock-variable-name-face))
2345
2346 ;; Handle the keywords defined above.
2347 (list (concat "\\_<\\(" scala-keywords "\\)\\_>")
2348 '(0 font-lock-keyword-face))
2349
2350 ;; Handle the constants defined above.
2351 (list (concat "\\_<\\(" scala-constants "\\)\\_>")
2352 '(0 font-lock-variable-name-face))
2353
2354 ;; Magical identifiers between backticks.
2355 (list (concat "`\\([^`]+\\)`")
2356 '(1 font-lock-variable-name-face))
2357
2358 ;; Handle numbers too.
2359 ;;
2360 ;; As usual, not quite right.
2361 (list (concat "\\_<\\("
2362 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2363 "[0-9]+\\(\\.[0-9]*\\|\\)"
2364 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2365 "[lLfFdD]?")
2366 '(0 mdw-number-face))
2367
ee7c3dea
MW
2368 ;; And everything else is punctuation.
2369 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2370 '(0 mdw-punct-face)))
2371
2372 font-lock-syntactic-keywords
2373 (list
2374
2375 ;; Single quotes around characters. But not when used to quote
2376 ;; symbol names. Ugh.
2377 (list (concat "\\('\\)"
2378 "\\(" "."
2379 "\\|" "\\\\" "\\(" "\\\\\\\\" "\\)*"
2380 "u+" "[0-9a-fA-F]\\{4\\}"
2381 "\\|" "\\\\" "[0-7]\\{1,3\\}"
2382 "\\|" "\\\\" "." "\\)"
2383 "\\('\\)")
2384 '(1 "\"")
2e7c6a86 2385 '(4 "\""))))))
ee7c3dea 2386
6132bc01
MW
2387;;;--------------------------------------------------------------------------
2388;;; C# programming configuration.
e808c1e5 2389
6132bc01 2390;; Make indentation nice.
e808c1e5 2391
c56296d0
MW
2392(mdw-define-c-style mdw-csharp
2393 (c-basic-offset . 2)
2394 (c-backslash-column . 72)
2395 (c-offsets-alist (substatement-open . 0)
2396 (label . 0)
2397 (case-label . +)
2398 (access-label . 0)
2399 (inclass . +)
2400 (statement-case-intro . +)))
2401(mdw-set-default-c-style 'csharp-mode 'mdw-csharp)
e808c1e5 2402
6132bc01 2403;; Declare C# fontification style.
e808c1e5
MW
2404
2405(defun mdw-fontify-csharp ()
2406
6132bc01 2407 ;; Other stuff.
0e7d960b 2408 (setq mdw-fill-prefix mdw-c-comment-fill-prefix)
e808c1e5 2409
6132bc01 2410 ;; Now define things to be fontified.
e808c1e5
MW
2411 (make-local-variable 'font-lock-keywords)
2412 (let ((csharp-keywords
165cecf8
MW
2413 (mdw-regexps "abstract" "as" "bool" "break" "byte" "case" "catch"
2414 "char" "checked" "class" "const" "continue" "decimal"
2415 "default" "delegate" "do" "double" "else" "enum"
2416 "event" "explicit" "extern" "finally" "fixed" "float"
2417 "for" "foreach" "goto" "if" "implicit" "in" "int"
2418 "interface" "internal" "is" "lock" "long" "namespace"
2419 "new" "object" "operator" "out" "override" "params"
2420 "private" "protected" "public" "readonly" "ref"
2421 "return" "sbyte" "sealed" "short" "sizeof"
2422 "stackalloc" "static" "string" "struct" "switch"
2423 "throw" "try" "typeof" "uint" "ulong" "unchecked"
2424 "unsafe" "ushort" "using" "virtual" "void" "volatile"
2425 "while" "yield"))
2426
2427 (csharp-constants
2428 (mdw-regexps "base" "false" "null" "this" "true")))
e808c1e5
MW
2429
2430 (setq font-lock-keywords
2431 (list
e808c1e5 2432
6132bc01 2433 ;; Handle the keywords defined above.
e808c1e5
MW
2434 (list (concat "\\<\\(" csharp-keywords "\\)\\>")
2435 '(0 font-lock-keyword-face))
2436
165cecf8
MW
2437 ;; Handle the magic constants defined above.
2438 (list (concat "\\<\\(" csharp-constants "\\)\\>")
2439 '(0 font-lock-variable-name-face))
2440
6132bc01 2441 ;; Handle numbers too.
e808c1e5
MW
2442 ;;
2443 ;; The following isn't quite right, but it's close enough.
e808c1e5
MW
2444 (list (concat "\\<\\("
2445 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2446 "[0-9]+\\(\\.[0-9]*\\|\\)"
2447 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2448 "[lLfFdD]?")
2449 '(0 mdw-number-face))
2450
6132bc01 2451 ;; And anything else is punctuation.
e808c1e5 2452 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2453 '(0 mdw-punct-face))))))
e808c1e5 2454
103c5923
MW
2455(define-derived-mode csharp-mode java-mode "C#"
2456 "Major mode for editing C# code.")
e808c1e5 2457
81fb08fc
MW
2458;;;--------------------------------------------------------------------------
2459;;; F# programming configuration.
2460
2461(setq fsharp-indent-offset 2)
2462
2463(defun mdw-fontify-fsharp ()
2464
2465 (let ((punct "=<>+-*/|&%!@?"))
2466 (do ((i 0 (1+ i)))
2467 ((>= i (length punct)))
2468 (modify-syntax-entry (aref punct i) ".")))
2469
2470 (modify-syntax-entry ?_ "_")
2471 (modify-syntax-entry ?( "(")
2472 (modify-syntax-entry ?) ")")
2473
2474 (setq indent-tabs-mode nil)
2475
2476 (let ((fsharp-keywords
2477 (mdw-regexps "abstract" "and" "as" "assert" "atomic"
165cecf8 2478 "begin" "break"
81fb08fc
MW
2479 "checked" "class" "component" "const" "constraint"
2480 "constructor" "continue"
2481 "default" "delegate" "do" "done" "downcast" "downto"
2482 "eager" "elif" "else" "end" "exception" "extern"
165cecf8 2483 "finally" "fixed" "for" "fori" "fun" "function"
81fb08fc
MW
2484 "functor"
2485 "global"
2486 "if" "in" "include" "inherit" "inline" "interface"
2487 "internal"
2488 "lazy" "let"
2489 "match" "measure" "member" "method" "mixin" "module"
2490 "mutable"
165cecf8
MW
2491 "namespace" "new"
2492 "object" "of" "open" "or" "override"
81fb08fc
MW
2493 "parallel" "params" "private" "process" "protected"
2494 "public" "pure"
2495 "rec" "recursive" "return"
2496 "sealed" "sig" "static" "struct"
165cecf8 2497 "tailcall" "then" "to" "trait" "try" "type"
81fb08fc
MW
2498 "upcast" "use"
2499 "val" "virtual" "void" "volatile"
2500 "when" "while" "with"
2501 "yield"))
2502
2503 (fsharp-builtins
165cecf8
MW
2504 (mdw-regexps "asr" "land" "lor" "lsl" "lsr" "lxor" "mod"
2505 "base" "false" "null" "true"))
81fb08fc
MW
2506
2507 (bang-keywords
2508 (mdw-regexps "do" "let" "return" "use" "yield"))
2509
2510 (preprocessor-keywords
2511 (mdw-regexps "if" "indent" "else" "endif")))
2512
2513 (setq font-lock-keywords
2514 (list (list (concat "\\(^\\|[^\"]\\)"
2515 "\\(" "(\\*"
2516 "[^*]*\\*+"
2517 "\\(" "[^)*]" "[^*]*" "\\*+" "\\)*"
2518 ")"
2519 "\\|"
2520 "//.*"
2521 "\\)")
2522 '(2 font-lock-comment-face))
2523
2524 (list (concat "'" "\\("
2525 "\\\\"
2526 "\\(" "[ntbr'\\]"
2527 "\\|" "[0-9][0-9][0-9]"
2528 "\\|" "u" "[0-9a-fA-F]\\{4\\}"
2529 "\\|" "U" "[0-9a-fA-F]\\{8\\}"
2530 "\\)"
2531 "\\|"
2532 "." "\\)" "'"
2533 "\\|"
2534 "\"" "[^\"\\]*"
2535 "\\(" "\\\\" "\\(.\\|\n\\)"
2536 "[^\"\\]*" "\\)*"
2537 "\\(\"\\|\\'\\)")
2538 '(0 font-lock-string-face))
2539
2540 (list (concat "\\_<\\(" bang-keywords "\\)!" "\\|"
2541 "^#[ \t]*\\(" preprocessor-keywords "\\)\\_>"
2542 "\\|"
2543 "\\_<\\(" fsharp-keywords "\\)\\_>")
2544 '(0 font-lock-keyword-face))
2545 (list (concat "\\<\\(" fsharp-builtins "\\)\\_>")
2546 '(0 font-lock-variable-name-face))
2547
2548 (list (concat "\\_<"
2549 "\\(" "0[bB][01]+" "\\|"
2550 "0[oO][0-7]+" "\\|"
2551 "0[xX][0-9a-fA-F]+" "\\)"
2552 "\\(" "lf\\|LF" "\\|"
2553 "[uU]?[ysnlL]?" "\\)"
2554 "\\|"
2555 "\\_<"
2556 "[0-9]+" "\\("
2557 "[mMQRZING]"
2558 "\\|"
2559 "\\(\\.[0-9]*\\)?"
2560 "\\([eE][-+]?[0-9]+\\)?"
2561 "[fFmM]?"
2562 "\\|"
2563 "[uU]?[ysnlL]?"
2564 "\\)")
2565 '(0 mdw-number-face))
2566
2567 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2568 '(0 mdw-punct-face))))))
81fb08fc
MW
2569
2570(defun mdw-fontify-inferior-fsharp ()
2571 (mdw-fontify-fsharp)
2572 (setq font-lock-keywords
2573 (append (list (list "^[#-]" '(0 font-lock-comment-face))
2574 (list "^>" '(0 font-lock-keyword-face)))
2575 font-lock-keywords)))
2576
6132bc01 2577;;;--------------------------------------------------------------------------
07965a39
MW
2578;;; Go programming configuration.
2579
2580(defun mdw-fontify-go ()
2581
2582 (make-local-variable 'font-lock-keywords)
2583 (let ((go-keywords
2584 (mdw-regexps "break" "case" "chan" "const" "continue"
2585 "default" "defer" "else" "fallthrough" "for"
2586 "func" "go" "goto" "if" "import"
2587 "interface" "map" "package" "range" "return"
fc79ff88
MW
2588 "select" "struct" "switch" "type" "var"))
2589 (go-intrinsics
2590 (mdw-regexps "bool" "byte" "complex64" "complex128" "error"
2591 "float32" "float64" "int" "uint8" "int16" "int32"
2592 "int64" "rune" "string" "uint" "uint8" "uint16"
2593 "uint32" "uint64" "uintptr" "void"
2594 "false" "iota" "nil" "true"
2595 "init" "main"
2596 "append" "cap" "copy" "delete" "imag" "len" "make"
2597 "new" "panic" "real" "recover")))
07965a39
MW
2598
2599 (setq font-lock-keywords
2600 (list
2601
2602 ;; Handle the keywords defined above.
2603 (list (concat "\\<\\(" go-keywords "\\)\\>")
2604 '(0 font-lock-keyword-face))
fc79ff88
MW
2605 (list (concat "\\<\\(" go-intrinsics "\\)\\>")
2606 '(0 font-lock-variable-name-face))
07965a39 2607
cbbea94e
MW
2608 ;; Strings and characters.
2609 (list (concat "'"
2610 "\\(" "[^\\']" "\\|"
2611 "\\\\"
2612 "\\(" "[abfnrtv\\'\"]" "\\|"
2613 "[0-7]\\{3\\}" "\\|"
2614 "x" "[0-9A-Fa-f]\\{2\\}" "\\|"
2615 "u" "[0-9A-Fa-f]\\{4\\}" "\\|"
2616 "U" "[0-9A-Fa-f]\\{8\\}" "\\)" "\\)"
2617 "'"
2618 "\\|"
2619 "\""
2620 "\\(" "[^\n\\\"]+" "\\|" "\\\\." "\\)*"
2621 "\\(\"\\|$\\)"
2622 "\\|"
2623 "`" "[^`]+" "`")
2624 '(0 font-lock-string-face))
2625
07965a39
MW
2626 ;; Handle numbers too.
2627 ;;
2628 ;; The following isn't quite right, but it's close enough.
2629 (list (concat "\\<\\("
2630 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2631 "[0-9]+\\(\\.[0-9]*\\|\\)"
2632 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)")
2633 '(0 mdw-number-face))
2634
2635 ;; And anything else is punctuation.
2636 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2637 '(0 mdw-punct-face))))))
07965a39 2638
36db1ea7
MW
2639;;;--------------------------------------------------------------------------
2640;;; Rust programming configuration.
2641
2642(setq-default rust-indent-offset 2)
2643
2644(defun mdw-self-insert-and-indent (count)
2645 (interactive "p")
2646 (self-insert-command count)
2647 (indent-according-to-mode))
2648
2649(defun mdw-fontify-rust ()
2650
2651 ;; Hack syntax categories.
2652 (modify-syntax-entry ?= ".")
2653
2654 ;; Fontify keywords and things.
2655 (make-local-variable 'font-lock-keywords)
2656 (let ((rust-keywords
2657 (mdw-regexps "abstract" "alignof" "as"
2658 "become" "box" "break"
2659 "const" "continue" "create"
2660 "do"
2661 "else" "enum" "extern"
b6f44b18 2662 "final" "fn" "for"
36db1ea7
MW
2663 "if" "impl" "in"
2664 "let" "loop"
2665 "macro" "match" "mod" "move" "mut"
2666 "offsetof" "override"
b6f44b18 2667 "priv" "proc" "pub" "pure"
36db1ea7 2668 "ref" "return"
b6f44b18
MW
2669 "sizeof" "static" "struct" "super"
2670 "trait" "type" "typeof"
36db1ea7
MW
2671 "unsafe" "unsized" "use"
2672 "virtual"
2673 "where" "while"
2674 "yield"))
2675 (rust-builtins
2676 (mdw-regexps "array" "pointer" "slice" "tuple"
2677 "bool" "true" "false"
2678 "f32" "f64"
2679 "i8" "i16" "i32" "i64" "isize"
2680 "u8" "u16" "u32" "u64" "usize"
b6f44b18
MW
2681 "char" "str"
2682 "self" "Self")))
36db1ea7
MW
2683 (setq font-lock-keywords
2684 (list
2685
2686 ;; Handle the keywords defined above.
d71a646d 2687 (list (concat "\\_<\\(" rust-keywords "\\)\\_>")
36db1ea7 2688 '(0 font-lock-keyword-face))
d71a646d 2689 (list (concat "\\_<\\(" rust-builtins "\\)\\_>")
36db1ea7
MW
2690 '(0 font-lock-variable-name-face))
2691
2692 ;; Handle numbers too.
d71a646d 2693 (list (concat "\\_<\\("
36db1ea7
MW
2694 "[0-9][0-9_]*"
2695 "\\(" "\\(\\.[0-9_]+\\)?[eE][-+]?[0-9_]+"
2696 "\\|" "\\.[0-9_]+"
2697 "\\)"
2698 "\\(f32\\|f64\\)?"
2699 "\\|" "\\(" "[0-9][0-9_]*"
2700 "\\|" "0x[0-9a-fA-F_]+"
2701 "\\|" "0o[0-7_]+"
2702 "\\|" "0b[01_]+"
2703 "\\)"
2704 "\\([ui]\\(8\\|16\\|32\\|64\\|s\\|size\\)\\)?"
d71a646d 2705 "\\)\\_>")
36db1ea7
MW
2706 '(0 mdw-number-face))
2707
2708 ;; And anything else is punctuation.
2709 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2710 '(0 mdw-punct-face)))))
2711
2712 ;; Hack key bindings.
d2f85967 2713 (local-set-key [?{] 'mdw-self-insert-and-indent)
2e7c6a86 2714 (local-set-key [?}] 'mdw-self-insert-and-indent))
36db1ea7 2715
07965a39 2716;;;--------------------------------------------------------------------------
6132bc01 2717;;; Awk programming configuration.
f617db13 2718
6132bc01 2719;; Make Awk indentation nice.
f617db13 2720
c56296d0
MW
2721(mdw-define-c-style mdw-awk
2722 (c-basic-offset . 2)
2723 (c-offsets-alist (substatement-open . 0)
2724 (c-backslash-column . 72)
2725 (statement-cont . 0)
2726 (statement-case-intro . +)))
2727(mdw-set-default-c-style 'awk-mode 'mdw-awk)
f617db13 2728
6132bc01 2729;; Declare Awk fontification style.
f617db13
MW
2730
2731(defun mdw-fontify-awk ()
2732
6132bc01 2733 ;; Miscellaneous fiddling.
f617db13
MW
2734 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2735
6132bc01 2736 ;; Now define things to be fontified.
02109a0d 2737 (make-local-variable 'font-lock-keywords)
f617db13 2738 (let ((c-keywords
8d6d55b9
MW
2739 (mdw-regexps "BEGIN" "END" "ARGC" "ARGIND" "ARGV" "CONVFMT"
2740 "ENVIRON" "ERRNO" "FIELDWIDTHS" "FILENAME" "FNR"
2741 "FS" "IGNORECASE" "NF" "NR" "OFMT" "OFS" "ORS" "RS"
2742 "RSTART" "RLENGTH" "RT" "SUBSEP"
2743 "atan2" "break" "close" "continue" "cos" "delete"
2744 "do" "else" "exit" "exp" "fflush" "file" "for" "func"
2745 "function" "gensub" "getline" "gsub" "if" "in"
2746 "index" "int" "length" "log" "match" "next" "rand"
2747 "return" "print" "printf" "sin" "split" "sprintf"
2748 "sqrt" "srand" "strftime" "sub" "substr" "system"
2749 "systime" "tolower" "toupper" "while")))
f617db13
MW
2750
2751 (setq font-lock-keywords
2752 (list
f617db13 2753
6132bc01 2754 ;; Handle the keywords defined above.
f617db13
MW
2755 (list (concat "\\<\\(" c-keywords "\\)\\>")
2756 '(0 font-lock-keyword-face))
2757
6132bc01 2758 ;; Handle numbers too.
f617db13
MW
2759 ;;
2760 ;; The following isn't quite right, but it's close enough.
f617db13
MW
2761 (list (concat "\\<\\("
2762 "0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2763 "[0-9]+\\(\\.[0-9]*\\|\\)"
2764 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)\\)"
2765 "[uUlL]*")
2766 '(0 mdw-number-face))
2767
6132bc01 2768 ;; And anything else is punctuation.
f617db13 2769 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2770 '(0 mdw-punct-face))))))
f617db13 2771
6132bc01
MW
2772;;;--------------------------------------------------------------------------
2773;;; Perl programming style.
f617db13 2774
6132bc01 2775;; Perl indentation style.
f617db13 2776
88158daf
MW
2777(setq perl-indent-level 2)
2778
f617db13
MW
2779(setq cperl-indent-level 2)
2780(setq cperl-continued-statement-offset 2)
2781(setq cperl-continued-brace-offset 0)
2782(setq cperl-brace-offset -2)
2783(setq cperl-brace-imaginary-offset 0)
2784(setq cperl-label-offset 0)
2785
6132bc01 2786;; Define perl fontification style.
f617db13
MW
2787
2788(defun mdw-fontify-perl ()
2789
6132bc01 2790 ;; Miscellaneous fiddling.
f617db13
MW
2791 (modify-syntax-entry ?$ "\\")
2792 (modify-syntax-entry ?$ "\\" font-lock-syntax-table)
a3b8176f 2793 (modify-syntax-entry ?: "." font-lock-syntax-table)
f617db13
MW
2794 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2795
6132bc01 2796 ;; Now define fontification things.
02109a0d 2797 (make-local-variable 'font-lock-keywords)
f617db13 2798 (let ((perl-keywords
821c4945
MW
2799 (mdw-regexps "and"
2800 "break"
2801 "cmp" "continue"
2802 "default" "do"
2803 "else" "elsif" "eq"
2804 "for" "foreach"
2805 "ge" "given" "gt" "goto"
2806 "if"
2807 "last" "le" "local" "lt"
2808 "my"
2809 "ne" "next"
2810 "or" "our"
2811 "package"
2812 "redo" "require" "return"
2813 "sub"
2814 "undef" "unless" "until" "use"
2815 "when" "while")))
f617db13
MW
2816
2817 (setq font-lock-keywords
2818 (list
f617db13 2819
6132bc01 2820 ;; Set up the keywords defined above.
f617db13
MW
2821 (list (concat "\\<\\(" perl-keywords "\\)\\>")
2822 '(0 font-lock-keyword-face))
2823
6132bc01 2824 ;; At least numbers are simpler than C.
f617db13
MW
2825 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
2826 "\\<[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
2827 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
2828 '(0 mdw-number-face))
2829
6132bc01 2830 ;; And anything else is punctuation.
f617db13 2831 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2832 '(0 mdw-punct-face))))))
f617db13
MW
2833
2834(defun perl-number-tests (&optional arg)
2835 "Assign consecutive numbers to lines containing `#t'. With ARG,
2836strip numbers instead."
2837 (interactive "P")
2838 (save-excursion
2839 (goto-char (point-min))
2840 (let ((i 0) (fmt (if arg "" " %4d")))
2841 (while (search-forward "#t" nil t)
2842 (delete-region (point) (line-end-position))
2843 (setq i (1+ i))
2844 (insert (format fmt i)))
2845 (goto-char (point-min))
2846 (if (re-search-forward "\\(tests\\s-*=>\\s-*\\)\\w*" nil t)
2847 (replace-match (format "\\1%d" i))))))
2848
6132bc01
MW
2849;;;--------------------------------------------------------------------------
2850;;; Python programming style.
f617db13 2851
99fe6ef5 2852(defun mdw-fontify-pythonic (keywords)
f617db13 2853
6132bc01 2854 ;; Miscellaneous fiddling.
f617db13 2855 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
7c0fcfde 2856 (setq indent-tabs-mode nil)
f617db13 2857
6132bc01 2858 ;; Now define fontification things.
02109a0d 2859 (make-local-variable 'font-lock-keywords)
99fe6ef5
MW
2860 (setq font-lock-keywords
2861 (list
f617db13 2862
be2cc788 2863 ;; Set up the keywords defined above.
4b037109 2864 (list (concat "\\_<\\(" keywords "\\)\\_>")
99fe6ef5 2865 '(0 font-lock-keyword-face))
f617db13 2866
be2cc788 2867 ;; At least numbers are simpler than C.
b834ced3
MW
2868 (list (concat "\\_<0\\([xX][0-9a-fA-F]+\\|[0-7]+\\)\\|"
2869 "\\_<[0-9][0-9]*\\(\\.[0-9]*\\|\\)"
2870 "\\([eE]\\([-+]\\|\\)[0-9]+\\|[lL]\\|\\)")
99fe6ef5 2871 '(0 mdw-number-face))
f617db13 2872
be2cc788 2873 ;; And anything else is punctuation.
99fe6ef5 2874 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 2875 '(0 mdw-punct-face)))))
99fe6ef5 2876
be2cc788 2877;; Define Python fontification styles.
99fe6ef5
MW
2878
2879(defun mdw-fontify-python ()
2880 (mdw-fontify-pythonic
2881 (mdw-regexps "and" "as" "assert" "break" "class" "continue" "def"
2882 "del" "elif" "else" "except" "exec" "finally" "for"
2883 "from" "global" "if" "import" "in" "is" "lambda"
2884 "not" "or" "pass" "print" "raise" "return" "try"
2885 "while" "with" "yield")))
2886
2887(defun mdw-fontify-pyrex ()
2888 (mdw-fontify-pythonic
2889 (mdw-regexps "and" "as" "assert" "break" "cdef" "class" "continue"
a63efb67 2890 "ctypedef" "def" "del" "elif" "else" "enum" "except" "exec"
99fe6ef5
MW
2891 "extern" "finally" "for" "from" "global" "if"
2892 "import" "in" "is" "lambda" "not" "or" "pass" "print"
a63efb67 2893 "property" "raise" "return" "struct" "try" "while" "with"
99fe6ef5 2894 "yield")))
f617db13 2895
b5263ae5
MW
2896(define-derived-mode pyrex-mode python-mode "Pyrex"
2897 "Major mode for editing Pyrex source code")
2898(setq auto-mode-alist
2899 (append '(("\\.pyx$" . pyrex-mode)
2900 ("\\.pxd$" . pyrex-mode)
2901 ("\\.pxi$" . pyrex-mode))
2902 auto-mode-alist))
2903
772a7a3b
MW
2904;;;--------------------------------------------------------------------------
2905;;; Lua programming style.
2906
2907(setq lua-indent-level 2)
2908
2909(defun mdw-fontify-lua ()
2910
2911 ;; Miscellaneous fiddling.
2912 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2913
2914 ;; Now define fontification things.
2915 (make-local-variable 'font-lock-keywords)
2916 (let ((lua-keywords
2917 (mdw-regexps "and" "break" "do" "else" "elseif" "end"
2918 "false" "for" "function" "goto" "if" "in" "local"
2919 "nil" "not" "or" "repeat" "return" "then" "true"
2920 "until" "while")))
2921 (setq font-lock-keywords
2922 (list
2923
2924 ;; Set up the keywords defined above.
2925 (list (concat "\\_<\\(" lua-keywords "\\)\\_>")
2926 '(0 font-lock-keyword-face))
2927
2928 ;; At least numbers are simpler than C.
2929 (list (concat "\\_<\\(" "0[xX]"
2930 "\\(" "[0-9a-fA-F]+"
2931 "\\(\\.[0-9a-fA-F]*\\)?"
2932 "\\|" "\\.[0-9a-fA-F]+"
2933 "\\)"
2934 "\\([pP][-+]?[0-9]+\\)?"
2935 "\\|" "\\(" "[0-9]+"
2936 "\\(\\.[0-9]*\\)?"
2937 "\\|" "\\.[0-9]+"
2938 "\\)"
2939 "\\([eE][-+]?[0-9]+\\)?"
2940 "\\)")
2941 '(0 mdw-number-face))
2942
2943 ;; And anything else is punctuation.
2944 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2945 '(0 mdw-punct-face))))))
2946
6132bc01
MW
2947;;;--------------------------------------------------------------------------
2948;;; Icon programming style.
cc1980e1 2949
6132bc01 2950;; Icon indentation style.
cc1980e1
MW
2951
2952(setq icon-brace-offset 0
2953 icon-continued-brace-offset 0
2954 icon-continued-statement-offset 2
2955 icon-indent-level 2)
2956
6132bc01 2957;; Define Icon fontification style.
cc1980e1
MW
2958
2959(defun mdw-fontify-icon ()
2960
6132bc01 2961 ;; Miscellaneous fiddling.
cc1980e1
MW
2962 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
2963
6132bc01 2964 ;; Now define fontification things.
cc1980e1
MW
2965 (make-local-variable 'font-lock-keywords)
2966 (let ((icon-keywords
2967 (mdw-regexps "break" "by" "case" "create" "default" "do" "else"
2968 "end" "every" "fail" "global" "if" "initial"
2969 "invocable" "link" "local" "next" "not" "of"
2970 "procedure" "record" "repeat" "return" "static"
2971 "suspend" "then" "to" "until" "while"))
2972 (preprocessor-keywords
2973 (mdw-regexps "define" "else" "endif" "error" "ifdef" "ifndef"
2974 "include" "line" "undef")))
2975 (setq font-lock-keywords
2976 (list
2977
6132bc01 2978 ;; Set up the keywords defined above.
cc1980e1
MW
2979 (list (concat "\\<\\(" icon-keywords "\\)\\>")
2980 '(0 font-lock-keyword-face))
2981
6132bc01 2982 ;; The things that Icon calls keywords.
cc1980e1
MW
2983 (list "&\\sw+\\>" '(0 font-lock-variable-name-face))
2984
6132bc01 2985 ;; At least numbers are simpler than C.
cc1980e1
MW
2986 (list (concat "\\<[0-9]+"
2987 "\\([rR][0-9a-zA-Z]+\\|"
2988 "\\.[0-9]+\\([eE][+-]?[0-9]+\\)?\\)\\>\\|"
2989 "\\.[0-9]+\\([eE][+-]?[0-9]+\\)?\\>")
2990 '(0 mdw-number-face))
2991
6132bc01 2992 ;; Preprocessor.
cc1980e1
MW
2993 (list (concat "^[ \t]*$[ \t]*\\<\\("
2994 preprocessor-keywords
2995 "\\)\\>")
2996 '(0 font-lock-keyword-face))
2997
6132bc01 2998 ;; And anything else is punctuation.
cc1980e1 2999 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3000 '(0 mdw-punct-face))))))
cc1980e1 3001
6132bc01
MW
3002;;;--------------------------------------------------------------------------
3003;;; Assembler mode.
30c8a8fb
MW
3004
3005(defun mdw-fontify-asm ()
3006 (modify-syntax-entry ?' "\"")
3007 (modify-syntax-entry ?. "w")
9032280b 3008 (modify-syntax-entry ?\n ">")
30c8a8fb 3009 (setf fill-prefix nil)
5edd6d49
MW
3010 (modify-syntax-entry ?. "_")
3011 (modify-syntax-entry ?* ". 23")
3012 (modify-syntax-entry ?/ ". 124b")
3013 (modify-syntax-entry ?\n "> b")
b90c2a2c 3014 (local-set-key ";" 'self-insert-command)
30c8a8fb
MW
3015 (mdw-standard-fill-prefix "\\([ \t]*;+[ \t]*\\)"))
3016
227b2b2b
MW
3017(defun mdw-asm-set-comment ()
3018 (modify-syntax-entry ?; "."
3019 )
5edd6d49 3020 (modify-syntax-entry asm-comment-char "< b")
227b2b2b
MW
3021 (setq comment-start (string asm-comment-char ? )))
3022(add-hook 'asm-mode-local-variables-hook 'mdw-asm-set-comment)
3023(put 'asm-comment-char 'safe-local-variable 'characterp)
9032280b 3024
6132bc01
MW
3025;;;--------------------------------------------------------------------------
3026;;; TCL configuration.
f617db13
MW
3027
3028(defun mdw-fontify-tcl ()
3029 (mapcar #'(lambda (ch) (modify-syntax-entry ch ".")) '(?$))
3030 (mdw-standard-fill-prefix "\\([ \t]*#+[ \t]*\\)")
02109a0d 3031 (make-local-variable 'font-lock-keywords)
f617db13
MW
3032 (setq font-lock-keywords
3033 (list
f617db13
MW
3034 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
3035 "\\<[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
3036 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
3037 '(0 mdw-number-face))
3038 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3039 '(0 mdw-punct-face)))))
f617db13 3040
ad305d7e
MW
3041;;;--------------------------------------------------------------------------
3042;;; Dylan programming configuration.
3043
3044(defun mdw-fontify-dylan ()
3045
3046 (make-local-variable 'font-lock-keywords)
3047
3048 ;; Horrors. `dylan-mode' sets the `major-mode' name after calling this
3049 ;; hook, which undoes all of our configuration.
3050 (setq major-mode 'dylan-mode)
3051 (font-lock-set-defaults)
3052
3053 (let* ((word "[-_a-zA-Z!*@<>$%]+")
3054 (dylan-keywords (mdw-regexps
3055
3056 "C-address" "C-callable-wrapper" "C-function"
3057 "C-mapped-subtype" "C-pointer-type" "C-struct"
3058 "C-subtype" "C-union" "C-variable"
3059
3060 "above" "abstract" "afterwards" "all"
3061 "begin" "below" "block" "by"
3062 "case" "class" "cleanup" "constant" "create"
3063 "define" "domain"
3064 "else" "elseif" "end" "exception" "export"
3065 "finally" "for" "from" "function"
3066 "generic"
3067 "handler"
3068 "if" "in" "instance" "interface" "iterate"
3069 "keyed-by"
3070 "let" "library" "local"
3071 "macro" "method" "module"
3072 "otherwise"
3073 "profiling"
3074 "select" "slot" "subclass"
3075 "table" "then" "to"
3076 "unless" "until" "use"
3077 "variable" "virtual"
3078 "when" "while"))
3079 (sharp-keywords (mdw-regexps
3080 "all-keys" "key" "next" "rest" "include"
3081 "t" "f")))
3082 (setq font-lock-keywords
3083 (list (list (concat "\\<\\(" dylan-keywords
ce29694e 3084 "\\|" "with\\(out\\)?-" word
ad305d7e
MW
3085 "\\)\\>")
3086 '(0 font-lock-keyword-face))
ce29694e
MW
3087 (list (concat "\\<" word ":" "\\|"
3088 "#\\(" sharp-keywords "\\)\\>")
ad305d7e
MW
3089 '(0 font-lock-variable-name-face))
3090 (list (concat "\\("
3091 "\\([-+]\\|\\<\\)[0-9]+" "\\("
3092 "\\(\\.[0-9]+\\)?" "\\([eE][-+][0-9]+\\)?"
3093 "\\|" "/[0-9]+"
3094 "\\)"
3095 "\\|" "\\.[0-9]+" "\\([eE][-+][0-9]+\\)?"
3096 "\\|" "#b[01]+"
3097 "\\|" "#o[0-7]+"
3098 "\\|" "#x[0-9a-zA-Z]+"
3099 "\\)\\>")
3100 '(0 mdw-number-face))
3101 (list (concat "\\("
3102 "\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\|"
3103 "\\_<[-+*/=<>:&|]+\\_>"
3104 "\\)")
2e7c6a86 3105 '(0 mdw-punct-face))))))
ad305d7e 3106
7fce54c3
MW
3107;;;--------------------------------------------------------------------------
3108;;; Algol 68 configuration.
3109
3110(setq a68-indent-step 2)
3111
3112(defun mdw-fontify-algol-68 ()
3113
3114 ;; Fix up the syntax table.
3115 (modify-syntax-entry ?# "!" a68-mode-syntax-table)
3116 (dolist (ch '(?- ?+ ?= ?< ?> ?* ?/ ?| ?&))
3117 (modify-syntax-entry ch "." a68-mode-syntax-table))
3118
3119 (make-local-variable 'font-lock-keywords)
3120
3121 (let ((not-comment
3122 (let ((word "COMMENT"))
3123 (do ((regexp (concat "[^" (substring word 0 1) "]+")
3124 (concat regexp "\\|"
3125 (substring word 0 i)
3126 "[^" (substring word i (1+ i)) "]"))
3127 (i 1 (1+ i)))
3128 ((>= i (length word)) regexp)))))
3129 (setq font-lock-keywords
3130 (list (list (concat "\\<COMMENT\\>"
3131 "\\(" not-comment "\\)\\{0,5\\}"
3132 "\\(\\'\\|\\<COMMENT\\>\\)")
3133 '(0 font-lock-comment-face))
3134 (list (concat "\\<CO\\>"
3135 "\\([^C]+\\|C[^O]\\)\\{0,5\\}"
3136 "\\($\\|\\<CO\\>\\)")
3137 '(0 font-lock-comment-face))
3138 (list "\\<[A-Z_]+\\>"
3139 '(0 font-lock-keyword-face))
3140 (list (concat "\\<"
3141 "[0-9]+"
3142 "\\(\\.[0-9]+\\)?"
3143 "\\([eE][-+]?[0-9]+\\)?"
3144 "\\>")
3145 '(0 mdw-number-face))
3146 (list "\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/"
2e7c6a86 3147 '(0 mdw-punct-face))))))
7fce54c3 3148
6132bc01
MW
3149;;;--------------------------------------------------------------------------
3150;;; REXX configuration.
f617db13
MW
3151
3152(defun mdw-rexx-electric-* ()
3153 (interactive)
3154 (insert ?*)
3155 (rexx-indent-line))
3156
3157(defun mdw-rexx-indent-newline-indent ()
3158 (interactive)
3159 (rexx-indent-line)
3160 (if abbrev-mode (expand-abbrev))
3161 (newline-and-indent))
3162
3163(defun mdw-fontify-rexx ()
3164
6132bc01 3165 ;; Various bits of fiddling.
f617db13
MW
3166 (setq mdw-auto-indent nil)
3167 (local-set-key [?\C-m] 'mdw-rexx-indent-newline-indent)
3168 (local-set-key [?*] 'mdw-rexx-electric-*)
3169 (mapcar #'(lambda (ch) (modify-syntax-entry ch "w"))
e443a4cd 3170 '(?! ?? ?# ?@ ?$))
f617db13
MW
3171 (mdw-standard-fill-prefix "\\([ \t]*/?\*[ \t]*\\)")
3172
6132bc01 3173 ;; Set up keywords and things for fontification.
f617db13
MW
3174 (make-local-variable 'font-lock-keywords-case-fold-search)
3175 (setq font-lock-keywords-case-fold-search t)
3176
3177 (setq rexx-indent 2)
3178 (setq rexx-end-indent rexx-indent)
f617db13
MW
3179 (setq rexx-cont-indent rexx-indent)
3180
02109a0d 3181 (make-local-variable 'font-lock-keywords)
f617db13 3182 (let ((rexx-keywords
8d6d55b9
MW
3183 (mdw-regexps "address" "arg" "by" "call" "digits" "do" "drop"
3184 "else" "end" "engineering" "exit" "expose" "for"
3185 "forever" "form" "fuzz" "if" "interpret" "iterate"
3186 "leave" "linein" "name" "nop" "numeric" "off" "on"
3187 "options" "otherwise" "parse" "procedure" "pull"
3188 "push" "queue" "return" "say" "select" "signal"
3189 "scientific" "source" "then" "trace" "to" "until"
3190 "upper" "value" "var" "version" "when" "while"
3191 "with"
3192
3193 "abbrev" "abs" "bitand" "bitor" "bitxor" "b2x"
3194 "center" "center" "charin" "charout" "chars"
3195 "compare" "condition" "copies" "c2d" "c2x"
3196 "datatype" "date" "delstr" "delword" "d2c" "d2x"
3197 "errortext" "format" "fuzz" "insert" "lastpos"
3198 "left" "length" "lineout" "lines" "max" "min"
3199 "overlay" "pos" "queued" "random" "reverse" "right"
3200 "sign" "sourceline" "space" "stream" "strip"
3201 "substr" "subword" "symbol" "time" "translate"
3202 "trunc" "value" "verify" "word" "wordindex"
3203 "wordlength" "wordpos" "words" "xrange" "x2b" "x2c"
3204 "x2d")))
f617db13
MW
3205
3206 (setq font-lock-keywords
3207 (list
f617db13 3208
6132bc01 3209 ;; Set up the keywords defined above.
f617db13
MW
3210 (list (concat "\\<\\(" rexx-keywords "\\)\\>")
3211 '(0 font-lock-keyword-face))
3212
6132bc01 3213 ;; Fontify all symbols the same way.
f617db13
MW
3214 (list (concat "\\<\\([0-9.][A-Za-z0-9.!?_#@$]*[Ee][+-]?[0-9]+\\|"
3215 "[A-Za-z0-9.!?_#@$]+\\)")
3216 '(0 font-lock-variable-name-face))
3217
6132bc01 3218 ;; And everything else is punctuation.
f617db13 3219 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3220 '(0 mdw-punct-face))))))
f617db13 3221
6132bc01
MW
3222;;;--------------------------------------------------------------------------
3223;;; Standard ML programming style.
f617db13
MW
3224
3225(defun mdw-fontify-sml ()
3226
6132bc01 3227 ;; Make underscore an honorary letter.
f617db13
MW
3228 (modify-syntax-entry ?' "w")
3229
6132bc01 3230 ;; Set fill prefix.
f617db13
MW
3231 (mdw-standard-fill-prefix "\\([ \t]*(\*[ \t]*\\)")
3232
6132bc01 3233 ;; Now define fontification things.
02109a0d 3234 (make-local-variable 'font-lock-keywords)
f617db13 3235 (let ((sml-keywords
8d6d55b9
MW
3236 (mdw-regexps "abstype" "and" "andalso" "as"
3237 "case"
3238 "datatype" "do"
3239 "else" "end" "eqtype" "exception"
3240 "fn" "fun" "functor"
3241 "handle"
3242 "if" "in" "include" "infix" "infixr"
3243 "let" "local"
3244 "nonfix"
3245 "of" "op" "open" "orelse"
3246 "raise" "rec"
3247 "sharing" "sig" "signature" "struct" "structure"
3248 "then" "type"
3249 "val"
3250 "where" "while" "with" "withtype")))
f617db13
MW
3251
3252 (setq font-lock-keywords
3253 (list
f617db13 3254
6132bc01 3255 ;; Set up the keywords defined above.
f617db13
MW
3256 (list (concat "\\<\\(" sml-keywords "\\)\\>")
3257 '(0 font-lock-keyword-face))
3258
6132bc01 3259 ;; At least numbers are simpler than C.
f617db13
MW
3260 (list (concat "\\<\\(\\~\\|\\)"
3261 "\\(0\\(\\([wW]\\|\\)[xX][0-9a-fA-F]+\\|"
852cd5fb
MW
3262 "[wW][0-9]+\\)\\|"
3263 "\\([0-9]+\\(\\.[0-9]+\\|\\)"
3264 "\\([eE]\\(\\~\\|\\)"
3265 "[0-9]+\\|\\)\\)\\)")
f617db13
MW
3266 '(0 mdw-number-face))
3267
6132bc01 3268 ;; And anything else is punctuation.
f617db13 3269 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3270 '(0 mdw-punct-face))))))
f617db13 3271
6132bc01
MW
3272;;;--------------------------------------------------------------------------
3273;;; Haskell configuration.
f617db13
MW
3274
3275(defun mdw-fontify-haskell ()
3276
6132bc01 3277 ;; Fiddle with syntax table to get comments right.
5952a020
MW
3278 (modify-syntax-entry ?' "_")
3279 (modify-syntax-entry ?- ". 12")
f617db13
MW
3280 (modify-syntax-entry ?\n ">")
3281
4d90cf3d
MW
3282 ;; Make punctuation be punctuation
3283 (let ((punct "=<>+-*/|&%!@?$.^:#`"))
3284 (do ((i 0 (1+ i)))
3285 ((>= i (length punct)))
3286 (modify-syntax-entry (aref punct i) ".")))
3287
6132bc01 3288 ;; Set fill prefix.
f617db13
MW
3289 (mdw-standard-fill-prefix "\\([ \t]*{?--?[ \t]*\\)")
3290
6132bc01 3291 ;; Fiddle with fontification.
02109a0d 3292 (make-local-variable 'font-lock-keywords)
f617db13 3293 (let ((haskell-keywords
5952a020
MW
3294 (mdw-regexps "as"
3295 "case" "ccall" "class"
3296 "data" "default" "deriving" "do"
3297 "else" "exists"
3298 "forall" "foreign"
3299 "hiding"
3300 "if" "import" "in" "infix" "infixl" "infixr" "instance"
3301 "let"
3302 "mdo" "module"
3303 "newtype"
3304 "of"
3305 "proc"
3306 "qualified"
3307 "rec"
3308 "safe" "stdcall"
3309 "then" "type"
3310 "unsafe"
3311 "where"))
3312 (control-sequences
3313 (mdw-regexps "ACK" "BEL" "BS" "CAN" "CR" "DC1" "DC2" "DC3" "DC4"
3314 "DEL" "DLE" "EM" "ENQ" "EOT" "ESC" "ETB" "ETX" "FF"
3315 "FS" "GS" "HT" "LF" "NAK" "NUL" "RS" "SI" "SO" "SOH"
3316 "SP" "STX" "SUB" "SYN" "US" "VT")))
f617db13
MW
3317
3318 (setq font-lock-keywords
3319 (list
5952a020
MW
3320 (list (concat "{-" "[^-]*" "\\(-+[^-}][^-]*\\)*"
3321 "\\(-+}\\|-*\\'\\)"
3322 "\\|"
3323 "--.*$")
f617db13 3324 '(0 font-lock-comment-face))
5952a020 3325 (list (concat "\\_<\\(" haskell-keywords "\\)\\_>")
f617db13 3326 '(0 font-lock-keyword-face))
5952a020
MW
3327 (list (concat "'\\("
3328 "[^\\]"
3329 "\\|"
3330 "\\\\"
3331 "\\(" "[abfnrtv\\\"']" "\\|"
3332 "^" "\\(" control-sequences "\\|"
3333 "[]A-Z@[\\^_]" "\\)" "\\|"
3334 "\\|"
3335 "[0-9]+" "\\|"
3336 "[oO][0-7]+" "\\|"
3337 "[xX][0-9A-Fa-f]+"
3338 "\\)"
3339 "\\)'")
3340 '(0 font-lock-string-face))
3341 (list "\\_<[A-Z]\\(\\sw+\\|\\s_+\\)*\\_>"
3342 '(0 font-lock-variable-name-face))
3343 (list (concat "\\_<0\\([xX][0-9a-fA-F]+\\|[oO][0-7]+\\)\\|"
3344 "\\_<[0-9]+\\(\\.[0-9]*\\|\\)"
f617db13
MW
3345 "\\([eE]\\([-+]\\|\\)[0-9]+\\|\\)")
3346 '(0 mdw-number-face))
3347 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3348 '(0 mdw-punct-face))))))
f617db13 3349
6132bc01
MW
3350;;;--------------------------------------------------------------------------
3351;;; Erlang configuration.
2ded9493 3352
52941dec 3353(setq erlang-electric-commands nil)
2ded9493
MW
3354
3355(defun mdw-fontify-erlang ()
3356
6132bc01 3357 ;; Set fill prefix.
2ded9493
MW
3358 (mdw-standard-fill-prefix "\\([ \t]*{?%*[ \t]*\\)")
3359
6132bc01 3360 ;; Fiddle with fontification.
2ded9493
MW
3361 (make-local-variable 'font-lock-keywords)
3362 (let ((erlang-keywords
3363 (mdw-regexps "after" "and" "andalso"
3364 "band" "begin" "bnot" "bor" "bsl" "bsr" "bxor"
3365 "case" "catch" "cond"
3366 "div" "end" "fun" "if" "let" "not"
3367 "of" "or" "orelse"
3368 "query" "receive" "rem" "try" "when" "xor")))
3369
3370 (setq font-lock-keywords
3371 (list
3372 (list "%.*$"
3373 '(0 font-lock-comment-face))
3374 (list (concat "\\<\\(" erlang-keywords "\\)\\>")
3375 '(0 font-lock-keyword-face))
3376 (list (concat "^-\\sw+\\>")
3377 '(0 font-lock-keyword-face))
3378 (list "\\<[0-9]+\\(\\|#[0-9a-zA-Z]+\\|[eE][+-]?[0-9]+\\)\\>"
3379 '(0 mdw-number-face))
3380 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3381 '(0 mdw-punct-face))))))
2ded9493 3382
6132bc01
MW
3383;;;--------------------------------------------------------------------------
3384;;; Texinfo configuration.
f617db13
MW
3385
3386(defun mdw-fontify-texinfo ()
3387
6132bc01 3388 ;; Set fill prefix.
f617db13
MW
3389 (mdw-standard-fill-prefix "\\([ \t]*@c[ \t]+\\)")
3390
6132bc01 3391 ;; Real fontification things.
02109a0d 3392 (make-local-variable 'font-lock-keywords)
f617db13
MW
3393 (setq font-lock-keywords
3394 (list
f617db13 3395
6132bc01 3396 ;; Environment names are keywords.
f617db13
MW
3397 (list "@\\(end\\) *\\([a-zA-Z]*\\)?"
3398 '(2 font-lock-keyword-face))
3399
6132bc01 3400 ;; Unmark escaped magic characters.
f617db13
MW
3401 (list "\\(@\\)\\([@{}]\\)"
3402 '(1 font-lock-keyword-face)
3403 '(2 font-lock-variable-name-face))
3404
6132bc01 3405 ;; Make sure we get comments properly.
f617db13
MW
3406 (list "@c\\(\\|omment\\)\\( .*\\)?$"
3407 '(0 font-lock-comment-face))
3408
6132bc01 3409 ;; Command names are keywords.
f617db13
MW
3410 (list "@\\([^a-zA-Z@]\\|[a-zA-Z@]*\\)"
3411 '(0 font-lock-keyword-face))
3412
6132bc01 3413 ;; Fontify TeX special characters as punctuation.
f617db13 3414 (list "[{}]+"
2e7c6a86 3415 '(0 mdw-punct-face)))))
f617db13 3416
6132bc01
MW
3417;;;--------------------------------------------------------------------------
3418;;; TeX and LaTeX configuration.
f617db13
MW
3419
3420(defun mdw-fontify-tex ()
3421 (setq ispell-parser 'tex)
55f80fae 3422 (turn-on-reftex)
f617db13 3423
6132bc01 3424 ;; Don't make maths into a string.
f617db13
MW
3425 (modify-syntax-entry ?$ ".")
3426 (modify-syntax-entry ?$ "." font-lock-syntax-table)
3427 (local-set-key [?$] 'self-insert-command)
3428
df200ecd 3429 ;; Make `tab' be useful, given that tab stops in TeX don't work well.
060c23ce 3430 (local-set-key "\C-\M-i" 'indent-relative)
df200ecd
MW
3431 (setq indent-tabs-mode nil)
3432
6132bc01 3433 ;; Set fill prefix.
f617db13
MW
3434 (mdw-standard-fill-prefix "\\([ \t]*%+[ \t]*\\)")
3435
6132bc01 3436 ;; Real fontification things.
02109a0d 3437 (make-local-variable 'font-lock-keywords)
f617db13
MW
3438 (setq font-lock-keywords
3439 (list
f617db13 3440
6132bc01 3441 ;; Environment names are keywords.
f617db13
MW
3442 (list (concat "\\\\\\(begin\\|end\\|newenvironment\\)"
3443 "{\\([^}\n]*\\)}")
3444 '(2 font-lock-keyword-face))
3445
6132bc01 3446 ;; Suspended environment names are keywords too.
f617db13
MW
3447 (list (concat "\\\\\\(suspend\\|resume\\)\\(\\[[^]]*\\]\\)?"
3448 "{\\([^}\n]*\\)}")
3449 '(3 font-lock-keyword-face))
3450
6132bc01 3451 ;; Command names are keywords.
f617db13
MW
3452 (list "\\\\\\([^a-zA-Z@]\\|[a-zA-Z@]*\\)"
3453 '(0 font-lock-keyword-face))
3454
6132bc01 3455 ;; Handle @/.../ for italics.
f617db13 3456 ;; (list "\\(@/\\)\\([^/]*\\)\\(/\\)"
852cd5fb
MW
3457 ;; '(1 font-lock-keyword-face)
3458 ;; '(3 font-lock-keyword-face))
f617db13 3459
6132bc01 3460 ;; Handle @*...* for boldness.
f617db13 3461 ;; (list "\\(@\\*\\)\\([^*]*\\)\\(\\*\\)"
852cd5fb
MW
3462 ;; '(1 font-lock-keyword-face)
3463 ;; '(3 font-lock-keyword-face))
f617db13 3464
6132bc01 3465 ;; Handle @`...' for literal syntax things.
f617db13 3466 ;; (list "\\(@`\\)\\([^']*\\)\\('\\)"
852cd5fb
MW
3467 ;; '(1 font-lock-keyword-face)
3468 ;; '(3 font-lock-keyword-face))
f617db13 3469
6132bc01 3470 ;; Handle @<...> for nonterminals.
f617db13 3471 ;; (list "\\(@<\\)\\([^>]*\\)\\(>\\)"
852cd5fb
MW
3472 ;; '(1 font-lock-keyword-face)
3473 ;; '(3 font-lock-keyword-face))
f617db13 3474
6132bc01 3475 ;; Handle other @-commands.
f617db13 3476 ;; (list "@\\([^a-zA-Z]\\|[a-zA-Z]*\\)"
852cd5fb 3477 ;; '(0 font-lock-keyword-face))
f617db13 3478
6132bc01 3479 ;; Make sure we get comments properly.
f617db13
MW
3480 (list "%.*"
3481 '(0 font-lock-comment-face))
3482
6132bc01 3483 ;; Fontify TeX special characters as punctuation.
f617db13 3484 (list "[$^_{}#&]"
2e7c6a86 3485 '(0 mdw-punct-face)))))
f617db13 3486
d9bba20d
MW
3487(setq TeX-install-font-lock 'tex-font-setup)
3488
8638f2f3
MW
3489(eval-after-load 'font-latex
3490 '(defun font-latex-jit-lock-force-redisplay (buf start end)
3491 "Compatibility for Emacsen not offering `jit-lock-force-redisplay'."
3492 ;; The following block is an expansion of `jit-lock-force-redisplay'
3493 ;; and involved macros taken from CVS Emacs on 2007-04-28.
3494 (with-current-buffer buf
3495 (let ((modified (buffer-modified-p)))
3496 (unwind-protect
3497 (let ((buffer-undo-list t)
3498 (inhibit-read-only t)
3499 (inhibit-point-motion-hooks t)
3500 (inhibit-modification-hooks t)
3501 deactivate-mark
3502 buffer-file-name
3503 buffer-file-truename)
3504 (put-text-property start end 'fontified t))
3505 (unless modified
3506 (restore-buffer-modified-p nil)))))))
3507
9bbb1ba0
MW
3508(setq LaTeX-syntactic-comments nil
3509 LaTeX-fill-break-at-separators '(\\\[))
3510
6132bc01
MW
3511;;;--------------------------------------------------------------------------
3512;;; SGML hacking.
f25cf300
MW
3513
3514(defun mdw-sgml-mode ()
3515 (interactive)
3516 (sgml-mode)
3517 (mdw-standard-fill-prefix "")
8a425bd7 3518 (make-local-variable 'sgml-delimiters)
f25cf300
MW
3519 (setq sgml-delimiters
3520 '("AND" "&" "COM" "--" "CRO" "&#" "DSC" "]" "DSO" "[" "DTGC" "]"
3521 "DTGO" "[" "ERO" "&" "ETAGO" ":e" "GRPC" ")" "GRPO" "(" "LIT" "\""
3522 "LITA" "'" "MDC" ">" "MDO" "<!" "MINUS" "-" "MSC" "]]" "NESTC" "{"
3523 "NET" "}" "OPT" "?" "OR" "|" "PERO" "%" "PIC" ">" "PIO" "<?"
3524 "PLUS" "+" "REFC" "." "REP" "*" "RNI" "#" "SEQ" "," "STAGO" ":"
3525 "TAGC" "." "VI" "=" "MS-START" "<![" "MS-END" "]]>"
3526 "XML-ECOM" "-->" "XML-PIC" "?>" "XML-SCOM" "<!--" "XML-TAGCE" "/>"
3527 "NULL" ""))
3528 (setq major-mode 'mdw-sgml-mode)
3529 (setq mode-name "[mdw] SGML")
3530 (run-hooks 'mdw-sgml-mode-hook))
6cb52f8b
MW
3531
3532;;;--------------------------------------------------------------------------
3533;;; Configuration files.
3534
3535(defvar mdw-conf-quote-normal nil
3536 "*Control syntax category of quote characters `\"' and `''.
3537If this is `t', consider quote characters to be normal
3538punctuation, as for `conf-quote-normal'. If this is `nil' then
3539leave quote characters as quotes. If this is a list, then
3540consider the quote characters in the list to be normal
3541punctuation. If this is a single quote character, then consider
3542that character only to be normal punctuation.")
3543(defun mdw-conf-quote-normal-acceptable-value-p (value)
3544 "Is the VALUE is an acceptable value for `mdw-conf-quote-normal'?"
3545 (or (booleanp value)
3546 (every (lambda (v) (memq v '(?\" ?')))
3547 (if (listp value) value (list value)))))
18bb0f77
MW
3548(put 'mdw-conf-quote-normal 'safe-local-variable
3549 'mdw-conf-quote-normal-acceptable-value-p)
6cb52f8b
MW
3550
3551(defun mdw-fix-up-quote ()
3552 "Apply the setting of `mdw-conf-quote-normal'."
3553 (let ((flag mdw-conf-quote-normal))
3554 (cond ((eq flag t)
3555 (conf-quote-normal t))
3556 ((not flag)
3557 nil)
3558 (t
3559 (let ((table (copy-syntax-table (syntax-table))))
3560 (mapc (lambda (ch) (modify-syntax-entry ch "." table))
3561 (if (listp flag) flag (list flag)))
3562 (set-syntax-table table)
3563 (and font-lock-mode (font-lock-fontify-buffer)))))))
18bb0f77 3564(add-hook 'conf-mode-local-variables-hook 'mdw-fix-up-quote t t)
f25cf300 3565
6132bc01
MW
3566;;;--------------------------------------------------------------------------
3567;;; Shell scripts.
f617db13
MW
3568
3569(defun mdw-setup-sh-script-mode ()
3570
6132bc01 3571 ;; Fetch the shell interpreter's name.
f617db13
MW
3572 (let ((shell-name sh-shell-file))
3573
6132bc01 3574 ;; Try reading the hash-bang line.
f617db13
MW
3575 (save-excursion
3576 (goto-char (point-min))
3577 (if (looking-at "#![ \t]*\\([^ \t\n]*\\)")
3578 (setq shell-name (match-string 1))))
3579
6132bc01 3580 ;; Now try to set the shell.
f617db13
MW
3581 ;;
3582 ;; Don't let `sh-set-shell' bugger up my script.
f617db13
MW
3583 (let ((executable-set-magic #'(lambda (s &rest r) s)))
3584 (sh-set-shell shell-name)))
3585
10c51541
MW
3586 ;; Don't insert here-document scaffolding automatically.
3587 (local-set-key "<" 'self-insert-command)
3588
6132bc01 3589 ;; Now enable my keys and the fontification.
f617db13
MW
3590 (mdw-misc-mode-config)
3591
6132bc01 3592 ;; Set the indentation level correctly.
f617db13
MW
3593 (setq sh-indentation 2)
3594 (setq sh-basic-offset 2))
3595
070c1dca
MW
3596(setq sh-shell-file "/bin/sh")
3597
6d6e095a
MW
3598;; Awful hacking to override the shell detection for particular scripts.
3599(defmacro define-custom-shell-mode (name shell)
3600 `(defun ,name ()
3601 (interactive)
3602 (set (make-local-variable 'sh-shell-file) ,shell)
3603 (sh-mode)))
3604(define-custom-shell-mode bash-mode "/bin/bash")
3605(define-custom-shell-mode rc-mode "/usr/bin/rc")
3606(put 'sh-shell-file 'permanent-local t)
3607
3608;; Hack the rc syntax table. Backquotes aren't paired in rc.
3609(eval-after-load "sh-script"
3610 '(or (assq 'rc sh-mode-syntax-table-input)
3611 (let ((frag '(nil
3612 ?# "<"
3613 ?\n ">#"
3614 ?\" "\"\""
3615 ?\' "\"\'"
3616 ?$ "'"
3617 ?\` "."
3618 ?! "_"
3619 ?% "_"
3620 ?. "_"
3621 ?^ "_"
3622 ?~ "_"
3623 ?, "_"
3624 ?= "."
3625 ?< "."
3626 ?> "."))
3627 (assoc (assq 'rc sh-mode-syntax-table-input)))
3628 (if assoc
3629 (rplacd assoc frag)
3630 (setq sh-mode-syntax-table-input
3631 (cons (cons 'rc frag)
3632 sh-mode-syntax-table-input))))))
3633
092f0a38
MW
3634;;;--------------------------------------------------------------------------
3635;;; Emacs shell mode.
3636
3637(defun mdw-eshell-prompt ()
3638 (let ((left "[") (right "]"))
3639 (when (= (user-uid) 0)
3640 (setq left "«" right "»"))
3641 (concat left
3642 (save-match-data
3643 (replace-regexp-in-string "\\..*$" "" (system-name)))
3644 " "
2d8b2924
MW
3645 (let* ((pwd (eshell/pwd)) (npwd (length pwd))
3646 (home (expand-file-name "~")) (nhome (length home)))
3647 (if (and (>= npwd nhome)
3648 (or (= nhome npwd)
5801e199
MW
3649 (= (elt pwd nhome) ?/))
3650 (string= (substring pwd 0 nhome) home))
2d8b2924
MW
3651 (concat "~" (substring pwd (length home)))
3652 pwd))
092f0a38
MW
3653 right)))
3654(setq eshell-prompt-function 'mdw-eshell-prompt)
ac4ae7cd 3655(setq eshell-prompt-regexp "^\\[[^]>]+\\(\\]\\|>>?\\)")
092f0a38 3656
2d8b2924
MW
3657(defun eshell/e (file) (find-file file) nil)
3658(defun eshell/ee (file) (find-file-other-window file) nil)
3659(defun eshell/w3m (url) (w3m-goto-url url) nil)
415a23dd 3660
092f0a38
MW
3661(mdw-define-face eshell-prompt (t :weight bold))
3662(mdw-define-face eshell-ls-archive (t :weight bold :foreground "red"))
3663(mdw-define-face eshell-ls-backup (t :foreground "lightgrey" :slant italic))
3664(mdw-define-face eshell-ls-product (t :foreground "lightgrey" :slant italic))
3665(mdw-define-face eshell-ls-clutter (t :foreground "lightgrey" :slant italic))
3666(mdw-define-face eshell-ls-executable (t :weight bold))
3667(mdw-define-face eshell-ls-directory (t :foreground "cyan" :weight bold))
3668(mdw-define-face eshell-ls-readonly (t nil))
3669(mdw-define-face eshell-ls-symlink (t :foreground "cyan"))
3670
b1a598dc 3671(defun mdw-eshell-hack () (setenv "LD_PRELOAD" nil))
8845865d
MW
3672(add-hook 'eshell-mode-hook 'mdw-eshell-hack)
3673
6132bc01
MW
3674;;;--------------------------------------------------------------------------
3675;;; Messages-file mode.
f617db13 3676
4bb22eea 3677(defun messages-mode-guts ()
f617db13
MW
3678 (setq messages-mode-syntax-table (make-syntax-table))
3679 (set-syntax-table messages-mode-syntax-table)
f617db13
MW
3680 (modify-syntax-entry ?0 "w" messages-mode-syntax-table)
3681 (modify-syntax-entry ?1 "w" messages-mode-syntax-table)
3682 (modify-syntax-entry ?2 "w" messages-mode-syntax-table)
3683 (modify-syntax-entry ?3 "w" messages-mode-syntax-table)
3684 (modify-syntax-entry ?4 "w" messages-mode-syntax-table)
3685 (modify-syntax-entry ?5 "w" messages-mode-syntax-table)
3686 (modify-syntax-entry ?6 "w" messages-mode-syntax-table)
3687 (modify-syntax-entry ?7 "w" messages-mode-syntax-table)
3688 (modify-syntax-entry ?8 "w" messages-mode-syntax-table)
3689 (modify-syntax-entry ?9 "w" messages-mode-syntax-table)
3690 (make-local-variable 'comment-start)
3691 (make-local-variable 'comment-end)
3692 (make-local-variable 'indent-line-function)
3693 (setq indent-line-function 'indent-relative)
3694 (mdw-standard-fill-prefix "\\([ \t]*\\(;\\|/?\\*\\)+[ \t]*\\)")
3695 (make-local-variable 'font-lock-defaults)
4bb22eea 3696 (make-local-variable 'messages-mode-keywords)
f617db13 3697 (let ((keywords
8d6d55b9
MW
3698 (mdw-regexps "array" "bitmap" "callback" "docs[ \t]+enum"
3699 "export" "enum" "fixed-octetstring" "flags"
3700 "harmless" "map" "nested" "optional"
3701 "optional-tagged" "package" "primitive"
3702 "primitive-nullfree" "relaxed[ \t]+enum"
3703 "set" "table" "tagged-optional" "union"
3704 "variadic" "vector" "version" "version-tag")))
4bb22eea 3705 (setq messages-mode-keywords
f617db13
MW
3706 (list
3707 (list (concat "\\<\\(" keywords "\\)\\>:")
3708 '(0 font-lock-keyword-face))
3709 '("\\([-a-zA-Z0-9]+:\\)" (0 font-lock-warning-face))
3710 '("\\(\\<[a-z][-_a-zA-Z0-9]*\\)"
3711 (0 font-lock-variable-name-face))
3712 '("\\<\\([0-9]+\\)\\>" (0 mdw-number-face))
3713 '("\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
3714 (0 mdw-punct-face)))))
3715 (setq font-lock-defaults
4bb22eea 3716 '(messages-mode-keywords nil nil nil nil))
f617db13
MW
3717 (run-hooks 'messages-file-hook))
3718
3719(defun messages-mode ()
3720 (interactive)
3721 (fundamental-mode)
3722 (setq major-mode 'messages-mode)
3723 (setq mode-name "Messages")
4bb22eea 3724 (messages-mode-guts)
f617db13
MW
3725 (modify-syntax-entry ?# "<" messages-mode-syntax-table)
3726 (modify-syntax-entry ?\n ">" messages-mode-syntax-table)
3727 (setq comment-start "# ")
3728 (setq comment-end "")
f617db13
MW
3729 (run-hooks 'messages-mode-hook))
3730
3731(defun cpp-messages-mode ()
3732 (interactive)
3733 (fundamental-mode)
3734 (setq major-mode 'cpp-messages-mode)
3735 (setq mode-name "CPP Messages")
4bb22eea 3736 (messages-mode-guts)
f617db13
MW
3737 (modify-syntax-entry ?* ". 23" messages-mode-syntax-table)
3738 (modify-syntax-entry ?/ ". 14" messages-mode-syntax-table)
3739 (setq comment-start "/* ")
3740 (setq comment-end " */")
3741 (let ((preprocessor-keywords
8d6d55b9
MW
3742 (mdw-regexps "assert" "define" "elif" "else" "endif" "error"
3743 "ident" "if" "ifdef" "ifndef" "import" "include"
3744 "line" "pragma" "unassert" "undef" "warning")))
4bb22eea 3745 (setq messages-mode-keywords
f617db13
MW
3746 (append (list (list (concat "^[ \t]*\\#[ \t]*"
3747 "\\(include\\|import\\)"
3748 "[ \t]*\\(<[^>]+\\(>\\|\\)\\)")
3749 '(2 font-lock-string-face))
3750 (list (concat "^\\([ \t]*#[ \t]*\\(\\("
3751 preprocessor-keywords
852cd5fb 3752 "\\)\\>\\|[0-9]+\\|$\\)\\)")
f617db13 3753 '(1 font-lock-keyword-face)))
4bb22eea 3754 messages-mode-keywords)))
297d60aa 3755 (run-hooks 'cpp-messages-mode-hook))
f617db13 3756
297d60aa
MW
3757(add-hook 'messages-mode-hook 'mdw-misc-mode-config t)
3758(add-hook 'cpp-messages-mode-hook 'mdw-misc-mode-config t)
f617db13
MW
3759; (add-hook 'messages-file-hook 'mdw-fontify-messages t)
3760
6132bc01
MW
3761;;;--------------------------------------------------------------------------
3762;;; Messages-file mode.
f617db13
MW
3763
3764(defvar mallow-driver-substitution-face 'mallow-driver-substitution-face
3765 "Face to use for subsittution directives.")
3766(make-face 'mallow-driver-substitution-face)
3767(defvar mallow-driver-text-face 'mallow-driver-text-face
3768 "Face to use for body text.")
3769(make-face 'mallow-driver-text-face)
3770
3771(defun mallow-driver-mode ()
3772 (interactive)
3773 (fundamental-mode)
3774 (setq major-mode 'mallow-driver-mode)
3775 (setq mode-name "Mallow driver")
3776 (setq mallow-driver-mode-syntax-table (make-syntax-table))
3777 (set-syntax-table mallow-driver-mode-syntax-table)
3778 (make-local-variable 'comment-start)
3779 (make-local-variable 'comment-end)
3780 (make-local-variable 'indent-line-function)
3781 (setq indent-line-function 'indent-relative)
3782 (mdw-standard-fill-prefix "\\([ \t]*\\(;\\|/?\\*\\)+[ \t]*\\)")
3783 (make-local-variable 'font-lock-defaults)
3784 (make-local-variable 'mallow-driver-mode-keywords)
3785 (let ((keywords
8d6d55b9
MW
3786 (mdw-regexps "each" "divert" "file" "if"
3787 "perl" "set" "string" "type" "write")))
f617db13
MW
3788 (setq mallow-driver-mode-keywords
3789 (list
3790 (list (concat "^%\\s *\\(}\\|\\(" keywords "\\)\\>\\).*$")
3791 '(0 font-lock-keyword-face))
3792 (list "^%\\s *\\(#.*\\|\\)$"
3793 '(0 font-lock-comment-face))
3794 (list "^%"
3795 '(0 font-lock-keyword-face))
3796 (list "^|?\\(.+\\)$" '(1 mallow-driver-text-face))
3797 (list "\\${[^}]*}"
3798 '(0 mallow-driver-substitution-face t)))))
3799 (setq font-lock-defaults
3800 '(mallow-driver-mode-keywords nil nil nil nil))
3801 (modify-syntax-entry ?\" "_" mallow-driver-mode-syntax-table)
3802 (modify-syntax-entry ?\n ">" mallow-driver-mode-syntax-table)
3803 (setq comment-start "%# ")
3804 (setq comment-end "")
f617db13
MW
3805 (run-hooks 'mallow-driver-mode-hook))
3806
3807(add-hook 'mallow-driver-hook 'mdw-misc-mode-config t)
3808
6132bc01
MW
3809;;;--------------------------------------------------------------------------
3810;;; NFast debugs.
f617db13
MW
3811
3812(defun nfast-debug-mode ()
3813 (interactive)
3814 (fundamental-mode)
3815 (setq major-mode 'nfast-debug-mode)
3816 (setq mode-name "NFast debug")
3817 (setq messages-mode-syntax-table (make-syntax-table))
3818 (set-syntax-table messages-mode-syntax-table)
3819 (make-local-variable 'font-lock-defaults)
3820 (make-local-variable 'nfast-debug-mode-keywords)
3821 (setq truncate-lines t)
3822 (setq nfast-debug-mode-keywords
3823 (list
3824 '("^\\(NFast_\\(Connect\\|Disconnect\\|Submit\\|Wait\\)\\)"
3825 (0 font-lock-keyword-face))
3826 (list (concat "^[ \t]+\\(\\("
3827 "[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]"
3828 "[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]"
3829 "[ \t]+\\)*"
3830 "[0-9a-fA-F]+\\)[ \t]*$")
3831 '(0 mdw-number-face))
3832 '("^[ \t]+\.status=[ \t]+\\<\\(OK\\)\\>"
3833 (1 font-lock-keyword-face))
3834 '("^[ \t]+\.status=[ \t]+\\<\\([a-zA-Z][0-9a-zA-Z]*\\)\\>"
3835 (1 font-lock-warning-face))
3836 '("^[ \t]+\.status[ \t]+\\<\\(zero\\)\\>"
3837 (1 nil))
3838 (list (concat "^[ \t]+\\.cmd=[ \t]+"
3839 "\\<\\([a-zA-Z][0-9a-zA-Z]*\\)\\>")
3840 '(1 font-lock-keyword-face))
3841 '("-?\\<\\([0-9]+\\|0x[0-9a-fA-F]+\\)\\>" (0 mdw-number-face))
3842 '("^\\([ \t]+[a-z0-9.]+\\)" (0 font-lock-variable-name-face))
3843 '("\\<\\([a-z][a-z0-9.]+\\)\\>=" (1 font-lock-variable-name-face))
3844 '("\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)" (0 mdw-punct-face))))
3845 (setq font-lock-defaults
3846 '(nfast-debug-mode-keywords nil nil nil nil))
f617db13
MW
3847 (run-hooks 'nfast-debug-mode-hook))
3848
6132bc01
MW
3849;;;--------------------------------------------------------------------------
3850;;; Other languages.
f617db13 3851
6132bc01 3852;; Smalltalk.
f617db13
MW
3853
3854(defun mdw-setup-smalltalk ()
3855 (and mdw-auto-indent
3856 (local-set-key "\C-m" 'smalltalk-newline-and-indent))
8a425bd7 3857 (make-local-variable 'mdw-auto-indent)
f617db13
MW
3858 (setq mdw-auto-indent nil)
3859 (local-set-key "\C-i" 'smalltalk-reindent))
3860
3861(defun mdw-fontify-smalltalk ()
02109a0d 3862 (make-local-variable 'font-lock-keywords)
f617db13
MW
3863 (setq font-lock-keywords
3864 (list
f617db13
MW
3865 (list "\\<[A-Z][a-zA-Z0-9]*\\>"
3866 '(0 font-lock-keyword-face))
3867 (list (concat "\\<0\\([xX][0-9a-fA-F_]+\\|[0-7_]+\\)\\|"
3868 "[0-9][0-9_]*\\(\\.[0-9_]*\\|\\)"
3869 "\\([eE]\\([-+]\\|\\)[0-9_]+\\|\\)")
3870 '(0 mdw-number-face))
3871 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3872 '(0 mdw-punct-face)))))
f617db13 3873
6132bc01 3874;; Lispy languages.
f617db13 3875
873d87df
MW
3876;; Unpleasant bodge.
3877(unless (boundp 'slime-repl-mode-map)
3878 (setq slime-repl-mode-map (make-sparse-keymap)))
3879
f617db13
MW
3880(defun mdw-indent-newline-and-indent ()
3881 (interactive)
3882 (indent-for-tab-command)
3883 (newline-and-indent))
3884
3885(eval-after-load "cl-indent"
3886 '(progn
3887 (mapc #'(lambda (pair)
3888 (put (car pair)
3889 'common-lisp-indent-function
3890 (cdr pair)))
3891 '((destructuring-bind . ((&whole 4 &rest 1) 4 &body))
3892 (multiple-value-bind . ((&whole 4 &rest 1) 4 &body))))))
3893
3894(defun mdw-common-lisp-indent ()
8a425bd7 3895 (make-local-variable 'lisp-indent-function)
f617db13
MW
3896 (setq lisp-indent-function 'common-lisp-indent-function))
3897
037be6de 3898(setq lisp-simple-loop-indentation 2
95575d1f
MW
3899 lisp-loop-keyword-indentation 6
3900 lisp-loop-forms-indentation 6)
3901
f617db13
MW
3902(defun mdw-fontify-lispy ()
3903
6132bc01 3904 ;; Set fill prefix.
f617db13
MW
3905 (mdw-standard-fill-prefix "\\([ \t]*;+[ \t]*\\)")
3906
6132bc01 3907 ;; Not much fontification needed.
02109a0d 3908 (make-local-variable 'font-lock-keywords)
f617db13 3909 (setq font-lock-keywords
2287504f
MW
3910 (list (list (concat "\\("
3911 "\\_<[-+]?"
3912 "\\(" "[0-9]+/[0-9]+"
3913 "\\|" "\\(" "[0-9]+" "\\(\\.[0-9]*\\)?" "\\|"
3914 "\\.[0-9]+" "\\)"
3915 "\\([dDeEfFlLsS][-+]?[0-9]+\\)?"
3916 "\\)"
3917 "\\|"
3918 "#"
3919 "\\(" "x" "[-+]?"
3920 "[0-9A-Fa-f]+" "\\(/[0-9A-Fa-f]+\\)?"
3921 "\\|" "o" "[-+]?" "[0-7]+" "\\(/[0-7]+\\)?"
3922 "\\|" "b" "[-+]?" "[01]+" "\\(/[01]+\\)?"
3923 "\\|" "[0-9]+" "r" "[-+]?"
3924 "[0-9a-zA-Z]+" "\\(/[0-9a-zA-Z]+\\)?"
3925 "\\)"
3926 "\\)\\_>")
3927 '(0 mdw-number-face))
3928 (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
2e7c6a86 3929 '(0 mdw-punct-face)))))
f617db13
MW
3930
3931(defun comint-send-and-indent ()
3932 (interactive)
3933 (comint-send-input)
3934 (and mdw-auto-indent
3935 (indent-for-tab-command)))
3936
29e4917e
MW
3937(defadvice comint-line-beginning-position
3938 (around mdw-calculate-it-properly () activate compile)
3939 "Calculate the actual line start for multi-line input."
3940 (if (or comint-use-prompt-regexp
3941 (eq (field-at-pos (point)) 'output))
3942 ad-do-it
3943 (setq ad-return-value
3944 (constrain-to-field (line-beginning-position) (point)))))
3945
ec007bea 3946(defun mdw-setup-m4 ()
ed5d93a4
MW
3947
3948 ;; Inexplicably, Emacs doesn't match braces in m4 mode. This is very
3949 ;; annoying: fix it.
3950 (modify-syntax-entry ?{ "(")
3951 (modify-syntax-entry ?} ")")
3952
3953 ;; Fill prefix.
ec007bea
MW
3954 (mdw-standard-fill-prefix "\\([ \t]*\\(?:#+\\|\\<dnl\\>\\)[ \t]*\\)"))
3955
6132bc01
MW
3956;;;--------------------------------------------------------------------------
3957;;; Text mode.
f617db13
MW
3958
3959(defun mdw-text-mode ()
3960 (setq fill-column 72)
3961 (flyspell-mode t)
3962 (mdw-standard-fill-prefix
c7a8da49 3963 "\\([ \t]*\\([>#|:] ?\\)*[ \t]*\\)" 3)
f617db13
MW
3964 (auto-fill-mode 1))
3965
060c23ce
MW
3966(eval-after-load "flyspell"
3967 '(define-key flyspell-mode-map "\C-\M-i" nil))
3968
6132bc01 3969;;;--------------------------------------------------------------------------
faf2cef7 3970;;; Outline and hide/show modes.
5de5db48
MW
3971
3972(defun mdw-outline-collapse-all ()
3973 "Completely collapse everything in the entire buffer."
3974 (interactive)
3975 (save-excursion
3976 (goto-char (point-min))
3977 (while (< (point) (point-max))
3978 (hide-subtree)
3979 (forward-line))))
3980
faf2cef7
MW
3981(setq hs-hide-comments-when-hiding-all nil)
3982
b200af26 3983(defadvice hs-hide-all (after hide-first-comment activate)
941c29ba 3984 (save-excursion (hs-hide-initial-comment-block)))
b200af26 3985
6132bc01
MW
3986;;;--------------------------------------------------------------------------
3987;;; Shell mode.
f617db13
MW
3988
3989(defun mdw-sh-mode-setup ()
3990 (local-set-key [?\C-a] 'comint-bol)
3991 (add-hook 'comint-output-filter-functions
3992 'comint-watch-for-password-prompt))
3993
3994(defun mdw-term-mode-setup ()
3d9147ea 3995 (setq term-prompt-regexp shell-prompt-pattern)
f617db13
MW
3996 (make-local-variable 'mouse-yank-at-point)
3997 (make-local-variable 'transient-mark-mode)
3998 (setq mouse-yank-at-point t)
f617db13
MW
3999 (auto-fill-mode -1)
4000 (setq tab-width 8))
4001
3d9147ea
MW
4002(defun term-send-meta-right () (interactive) (term-send-raw-string "\e\e[C"))
4003(defun term-send-meta-left () (interactive) (term-send-raw-string "\e\e[D"))
4004(defun term-send-ctrl-uscore () (interactive) (term-send-raw-string "\C-_"))
4005(defun term-send-meta-meta-something ()
4006 (interactive)
4007 (term-send-raw-string "\e\e")
4008 (term-send-raw))
4009(eval-after-load 'term
4010 '(progn
4011 (define-key term-raw-map [?\e ?\e] nil)
4012 (define-key term-raw-map [?\e ?\e t] 'term-send-meta-meta-something)
4013 (define-key term-raw-map [?\C-/] 'term-send-ctrl-uscore)
4014 (define-key term-raw-map [M-right] 'term-send-meta-right)
4015 (define-key term-raw-map [?\e ?\M-O ?C] 'term-send-meta-right)
4016 (define-key term-raw-map [M-left] 'term-send-meta-left)
4017 (define-key term-raw-map [?\e ?\M-O ?D] 'term-send-meta-left)))
4018
c4434c20
MW
4019(defadvice term-exec (before program-args-list compile activate)
4020 "If the PROGRAM argument is a list, interpret it as (PROGRAM . SWITCHES).
4021This allows you to pass a list of arguments through `ansi-term'."
4022 (let ((program (ad-get-arg 2)))
4023 (if (listp program)
4024 (progn
4025 (ad-set-arg 2 (car program))
4026 (ad-set-arg 4 (cdr program))))))
4027
8845865d
MW
4028(defadvice term-exec-1 (around hack-environment compile activate)
4029 "Hack the environment inherited by inferiors in the terminal."
4030 (let ((process-environment process-environment))
4031 (setenv "LD_PRELOAD" nil)
4032 ad-do-it))
4033
4034(defadvice shell (around hack-environment compile activate)
4035 "Hack the environment inherited by inferiors in the shell."
4036 (let ((process-environment process-environment))
4037 (setenv "LD_PRELOAD" nil)
4038 ad-do-it))
4039
c4434c20
MW
4040(defun ssh (host)
4041 "Open a terminal containing an ssh session to the HOST."
4042 (interactive "sHost: ")
4043 (ansi-term (list "ssh" host) (format "ssh@%s" host)))
4044
5aa1b95f 4045(defvar git-grep-command
20b6cd68 4046 "env GIT_PAGER=cat git grep --no-color -nH -e "
5aa1b95f
MW
4047 "*The default command for \\[git-grep].")
4048
4049(defvar git-grep-history nil)
4050
4051(defun git-grep (command-args)
4052 "Run `git grep' with user-specified args and collect output in a buffer."
4053 (interactive
4054 (list (read-shell-command "Run git grep (like this): "
4055 git-grep-command 'git-grep-history)))
6a0a9a51
MW
4056 (let ((grep-use-null-device nil))
4057 (grep command-args)))
5aa1b95f 4058
c63bce81
MW
4059;;;--------------------------------------------------------------------------
4060;;; Magit configuration.
4061
c14a5ec3
MW
4062(setq magit-diff-refine-hunk 'all
4063 magit-view-git-manual-method 'man
83d2acdd 4064 magit-log-margin '(nil age magit-log-margin-width t 18)
c14a5ec3
MW
4065 magit-wip-after-save-local-mode-lighter ""
4066 magit-wip-after-apply-mode-lighter ""
4067 magit-wip-before-change-mode-lighter "")
4068(eval-after-load "magit"
4069 '(progn (global-magit-file-mode 1)
4070 (magit-wip-after-save-mode 1)
4071 (magit-wip-after-apply-mode 1)
4072 (magit-wip-before-change-mode 1)
60c22e1b 4073 (add-to-list 'magit-no-confirm 'safe-with-wip)
2a67803a 4074 (add-to-list 'magit-no-confirm 'trash)
87746eb7
MW
4075 (push '(:eval (if (or magit-wip-after-save-local-mode
4076 magit-wip-after-apply-mode
4077 magit-wip-before-change-mode)
4078 (format " wip:%s%s%s"
4079 (if magit-wip-after-apply-mode "A" "")
4080 (if magit-wip-before-change-mode "C" "")
4081 (if magit-wip-after-save-local-mode "S" ""))))
4082 minor-mode-alist)
60c22e1b
MW
4083 (dolist (popup '(magit-diff-popup
4084 magit-diff-refresh-popup
4085 magit-diff-mode-refresh-popup
4086 magit-revision-mode-refresh-popup))
4087 (magit-define-popup-switch popup ?R "Reverse diff" "-R"))))
c14a5ec3 4088
28509f06
MW
4089(defadvice magit-wip-commit-buffer-file
4090 (around mdw-just-this-buffer activate compile)
4091 (let ((magit-save-repository-buffers nil)) ad-do-it))
4092
2a67803a
MW
4093(defadvice magit-discard
4094 (around mdw-delete-if-prefix-argument activate compile)
4095 (let ((magit-delete-by-moving-to-trash
4096 (and (null current-prefix-arg)
4097 magit-delete-by-moving-to-trash)))
4098 ad-do-it))
4099
ff6a7bee
MW
4100(setq magit-repolist-columns
4101 '(("Name" 16 magit-repolist-column-ident nil)
4102 ("Version" 18 magit-repolist-column-version nil)
4103 ("St" 2 magit-repolist-column-dirty nil)
4104 ("L<U" 3 mdw-repolist-column-unpulled-from-upstream nil)
4105 ("L>U" 3 mdw-repolist-column-unpushed-to-upstream nil)
4106 ("Path" 32 magit-repolist-column-path nil)))
4107
4108(setq magit-repository-directories '(("~/etc/profile" . 0)
4109 ("~/src/" . 1)))
4110
4111(defadvice magit-list-repos (around mdw-dirname () activate compile)
4112 "Make sure the returned names are directory names.
4113Otherwise child processes get started in the wrong directory and
4114there is sadness."
4115 (setq ad-return-value (mapcar #'file-name-as-directory ad-do-it)))
4116
4117(defun mdw-repolist-column-unpulled-from-upstream (_id)
4118 "Insert number of upstream commits not in the current branch."
4119 (let ((upstream (magit-get-upstream-branch (magit-get-current-branch) t)))
4120 (and upstream
4121 (let ((n (cadr (magit-rev-diff-count "HEAD" upstream))))
4122 (propertize (number-to-string n) 'face
4123 (if (> n 0) 'bold 'shadow))))))
4124
4125(defun mdw-repolist-column-unpushed-to-upstream (_id)
4126 "Insert number of commits in the current branch but not its upstream."
4127 (let ((upstream (magit-get-upstream-branch (magit-get-current-branch) t)))
4128 (and upstream
4129 (let ((n (car (magit-rev-diff-count "HEAD" upstream))))
4130 (propertize (number-to-string n) 'face
4131 (if (> n 0) 'bold 'shadow))))))
4132
5d824e2f
MW
4133(defun mdw-try-smerge ()
4134 (save-excursion
4135 (goto-char (point-min))
4136 (when (re-search-forward "^<<<<<<< " nil t)
4137 (smerge-mode 1))))
4138(add-hook 'find-file-hook 'mdw-try-smerge t)
4139
0f81a131 4140;;;--------------------------------------------------------------------------
e48c2e5b
MW
4141;;; GUD, and especially GDB.
4142
4143;; Inhibit window dedication. I mean, seriously, wtf?
4144(defadvice gdb-display-buffer (after mdw-undedicated (buf) compile activate)
4145 "Don't make windows dedicated. Seriously."
4146 (set-window-dedicated-p ad-return-value nil))
4147(defadvice gdb-set-window-buffer
4148 (after mdw-undedicated (name &optional ignore-dedicated window)
4149 compile activate)
4150 "Don't make windows dedicated. Seriously."
4151 (set-window-dedicated-p (or window (selected-window)) nil))
4152
4153;;;--------------------------------------------------------------------------
0f81a131
MW
4154;;; MPC configuration.
4155
50a77b30
MW
4156(eval-when-compile (trap (require 'mpc)))
4157
0f81a131
MW
4158(setq mpc-browser-tags '(Artist|Composer|Performer Album|Playlist))
4159
4160(defun mdw-mpc-now-playing ()
4161 (interactive)
4162 (require 'mpc)
4163 (save-excursion
4164 (set-buffer (mpc-proc-cmd (mpc-proc-cmd-list '("status" "currentsong"))))
4165 (mpc--status-callback))
4166 (let ((state (cdr (assq 'state mpc-status))))
4167 (cond ((member state '("stop"))
4168 (message "mpd stopped."))
4169 ((member state '("play" "pause"))
4170 (let* ((artist (cdr (assq 'Artist mpc-status)))
4171 (album (cdr (assq 'Album mpc-status)))
4172 (title (cdr (assq 'Title mpc-status)))
4173 (file (cdr (assq 'file mpc-status)))
4174 (duration-string (cdr (assq 'Time mpc-status)))
4175 (time-string (cdr (assq 'time mpc-status)))
4176 (time (and time-string
355d1336 4177 (string-to-number
0f81a131
MW
4178 (if (string-match ":" time-string)
4179 (substring time-string
4180 0 (match-beginning 0))
4181 (time-string)))))
4182 (duration (and duration-string
355d1336 4183 (string-to-number duration-string)))
0f81a131
MW
4184 (pos (and time duration
4185 (format " [%d:%02d/%d:%02d]"
4186 (/ time 60) (mod time 60)
4187 (/ duration 60) (mod duration 60))))
4188 (fmt (cond ((and artist title)
4189 (format "`%s' by %s%s" title artist
4190 (if album (format ", from `%s'" album)
4191 "")))
4192 (file
4193 (format "`%s' (no tags)" file))
4194 (t
4195 "(no idea what's playing!)"))))
4196 (if (string= state "play")
4197 (message "mpd playing %s%s" fmt (or pos ""))
4198 (message "mpd paused in %s%s" fmt (or pos "")))))
4199 (t
4200 (message "mpd in unknown state `%s'" state)))))
4201
4aba12fa
MW
4202(defmacro mdw-define-mpc-wrapper (func bvl interactive &rest body)
4203 `(defun ,func ,bvl
4204 (interactive ,@interactive)
4205 (require 'mpc)
4206 ,@body
4207 (mdw-mpc-now-playing)))
4208
4209(mdw-define-mpc-wrapper mdw-mpc-play-or-pause () nil
4210 (if (member (cdr (assq 'state (mpc-cmd-status))) '("play"))
4211 (mpc-pause)
4212 (mpc-play)))
4213
4214(mdw-define-mpc-wrapper mdw-mpc-next () nil (mpc-next))
4215(mdw-define-mpc-wrapper mdw-mpc-prev () nil (mpc-prev))
4216(mdw-define-mpc-wrapper mdw-mpc-stop () nil (mpc-stop))
0f81a131 4217
5147578f
MW
4218(defun mdw-mpc-louder (step)
4219 (interactive (list (if current-prefix-arg
4220 (prefix-numeric-value current-prefix-arg)
4221 +10)))
4222 (mpc-proc-cmd (format "volume %+d" step)))
4223
4224(defun mdw-mpc-quieter (step)
4225 (interactive (list (if current-prefix-arg
4226 (prefix-numeric-value current-prefix-arg)
4227 +10)))
4228 (mpc-proc-cmd (format "volume %+d" (- step))))
4229
6dbdfe26
MW
4230(defun mdw-mpc-hack-lines (arg interactivep func)
4231 (if (and interactivep (use-region-p))
4232 (let ((from (region-beginning)) (to (region-end)))
4233 (goto-char from)
4234 (beginning-of-line)
4235 (funcall func)
4236 (forward-line)
4237 (while (< (point) to)
4238 (funcall func)
4239 (forward-line)))
4240 (let ((n (prefix-numeric-value arg)))
4241 (cond ((minusp n)
4242 (unless (bolp)
4243 (beginning-of-line)
4244 (funcall func)
4245 (incf n))
4246 (while (minusp n)
4247 (forward-line -1)
4248 (funcall func)
4249 (incf n)))
4250 (t
4251 (beginning-of-line)
4252 (while (plusp n)
4253 (funcall func)
4254 (forward-line)
4255 (decf n)))))))
4256
4257(defun mdw-mpc-select-one ()
4466dfac
MW
4258 (when (and (get-char-property (point) 'mpc-file)
4259 (not (get-char-property (point) 'mpc-select)))
6dbdfe26
MW
4260 (mpc-select-toggle)))
4261
4262(defun mdw-mpc-unselect-one ()
4263 (when (get-char-property (point) 'mpc-select)
4264 (mpc-select-toggle)))
4265
4266(defun mdw-mpc-select (&optional arg interactivep)
4267 (interactive (list current-prefix-arg t))
a30d0e33 4268 (mdw-mpc-hack-lines arg interactivep 'mdw-mpc-select-one))
6dbdfe26
MW
4269
4270(defun mdw-mpc-unselect (&optional arg interactivep)
4271 (interactive (list current-prefix-arg t))
a30d0e33 4272 (mdw-mpc-hack-lines arg interactivep 'mdw-mpc-unselect-one))
6dbdfe26
MW
4273
4274(defun mdw-mpc-unselect-backwards (arg)
4275 (interactive "p")
a30d0e33 4276 (mdw-mpc-hack-lines (- arg) t 'mdw-mpc-unselect-one))
6dbdfe26
MW
4277
4278(defun mdw-mpc-unselect-all ()
4279 (interactive)
4280 (setq mpc-select nil)
4281 (mpc-selection-refresh))
4282
4283(defun mdw-mpc-next-line (arg)
4284 (interactive "p")
4285 (beginning-of-line)
4286 (forward-line arg))
4287
4288(defun mdw-mpc-previous-line (arg)
4289 (interactive "p")
4290 (beginning-of-line)
4291 (forward-line (- arg)))
4292
6d6f2b51
MW
4293(defun mdw-mpc-playlist-add (&optional arg interactivep)
4294 (interactive (list current-prefix-arg t))
4295 (let ((mpc-select mpc-select))
4296 (when (or arg (and interactivep (use-region-p)))
4297 (setq mpc-select nil)
4298 (mdw-mpc-hack-lines arg interactivep 'mdw-mpc-select-one))
4299 (setq mpc-select (reverse mpc-select))
4300 (mpc-playlist-add)))
4301
4302(defun mdw-mpc-playlist-delete (&optional arg interactivep)
4303 (interactive (list current-prefix-arg t))
4304 (setq mpc-select (nreverse mpc-select))
4305 (mpc-select-save
4306 (when (or arg (and interactivep (use-region-p)))
4307 (setq mpc-select nil)
4308 (mpc-selection-refresh)
4309 (mdw-mpc-hack-lines arg interactivep 'mdw-mpc-select-one))
4310 (mpc-playlist-delete)))
4311
75019c66
MW
4312(defun mdw-mpc-hack-tagbrowsers ()
4313 (setq-local mode-line-format
4314 '("%e"
4315 mode-line-frame-identification
4316 mode-line-buffer-identification)))
4317(add-hook 'mpc-tagbrowser-mode-hook 'mdw-mpc-hack-tagbrowsers)
4318
65f6a37a
MW
4319(defun mdw-mpc-hack-songs ()
4320 (setq-local header-line-format
4321 ;; '("MPC " mpc-volume " " mpc-current-song)
4322 (list (propertize " " 'display '(space :align-to 0))
4323 ;; 'mpc-songs-format-description
4324 '(:eval
4325 (let ((deactivate-mark) (hscroll (window-hscroll)))
4326 (with-temp-buffer
4327 (mpc-format mpc-songs-format 'self hscroll)
4328 ;; That would be simpler than the hscroll handling in
4329 ;; mpc-format, but currently move-to-column does not
4330 ;; recognize :space display properties.
4331 ;; (move-to-column hscroll)
4332 ;; (delete-region (point-min) (point))
4333 (buffer-string)))))))
4334(add-hook 'mpc-songs-mode-hook 'mdw-mpc-hack-songs)
4335
6dbdfe26
MW
4336(eval-after-load "mpc"
4337 '(progn
4338 (define-key mpc-mode-map "m" 'mdw-mpc-select)
4339 (define-key mpc-mode-map "u" 'mdw-mpc-unselect)
4340 (define-key mpc-mode-map "\177" 'mdw-mpc-unselect-backwards)
4341 (define-key mpc-mode-map "\e\177" 'mdw-mpc-unselect-all)
4342 (define-key mpc-mode-map "n" 'mdw-mpc-next-line)
4343 (define-key mpc-mode-map "p" 'mdw-mpc-previous-line)
56ba17be 4344 (define-key mpc-mode-map "/" 'mpc-songs-search)
6dbdfe26
MW
4345 (setq mpc-songs-mode-map (make-sparse-keymap))
4346 (set-keymap-parent mpc-songs-mode-map mpc-mode-map)
4347 (define-key mpc-songs-mode-map "l" 'mpc-playlist)
6d6f2b51
MW
4348 (define-key mpc-songs-mode-map "+" 'mdw-mpc-playlist-add)
4349 (define-key mpc-songs-mode-map "-" 'mdw-mpc-playlist-delete)
56ba17be 4350 (define-key mpc-songs-mode-map "\r" 'mpc-songs-jump-to)))
6dbdfe26 4351
e07e3320
MW
4352;;;--------------------------------------------------------------------------
4353;;; Inferior Emacs Lisp.
4354
4355(setq comint-prompt-read-only t)
4356
4357(eval-after-load "comint"
4358 '(progn
4359 (define-key comint-mode-map "\C-w" 'comint-kill-region)
4360 (define-key comint-mode-map [C-S-backspace] 'comint-kill-whole-line)))
4361
4362(eval-after-load "ielm"
4363 '(progn
4364 (define-key ielm-map "\C-w" 'comint-kill-region)
4365 (define-key ielm-map [C-S-backspace] 'comint-kill-whole-line)))
4366
f617db13
MW
4367;;;----- That's all, folks --------------------------------------------------
4368
4369(provide 'dot-emacs)