Update.
[elisp.git] / emacs.el
1 ;; -*- mode: Emacs-Lisp; mode: rainbow; -*-
2
3 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4 ;; This program is free software; you can redistribute it and/or         ;;
5 ;; modify it under the terms of the GNU General Public License as        ;;
6 ;; published by the Free Software Foundation; either version 3, or (at   ;;
7 ;; your option) any later version.                                       ;;
8 ;;                                                                       ;;
9 ;; This program is distributed in the hope that it will be useful, but   ;;
10 ;; WITHOUT ANY WARRANTY; without even the implied warranty of            ;;
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      ;;
12 ;; General Public License for more details.                              ;;
13 ;;                                                                       ;;
14 ;; You should have received a copy of the GNU General Public License     ;;
15 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.  ;;
16 ;;                                                                       ;;
17 ;; Written by and Copyright (C) Francois Fleuret                         ;;
18 ;; Contact <francois@fleuret.org> for comments & bug reports             ;;
19 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20
21 ;; It's better to set the preferences in the .Xresources so that the
22 ;; window is not first displayed with the wrong options
23
24 ;; Emacs.menuBar:            off
25 ;; Emacs.verticalScrollBars: off
26 ;; Emacs.toolBar:            off
27 ;; Emacs.internalBorder:     1
28 ;; Emacs.FontBackend: xft
29 ;; Xft.dpi: 96
30 ;; Xft.hinting: true
31 ;; Xft.antialias: true
32 ;; Xft.rgba: rgb
33
34 ;; Give the focus to the emacs window if we are under a windowing
35 ;; system
36
37 (when window-system
38   ;; (x-focus-frame nil)
39   (set-mouse-pixel-position (selected-frame) 4 4))
40
41 ;; Where I keep my own scripts
42
43 (add-to-list 'load-path "~/sources/gpl/elisp")
44 (add-to-list 'load-path "~/sources/elisp")
45 (add-to-list 'load-path "~/local/elisp")
46
47 ;; No, I do not like menus
48 (menu-bar-mode -1)
49
50 ;; Nor fringes
51 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 0)))
52 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 1)))
53 (when (functionp 'fringe-mode) (fringe-mode '(12 . 12)))
54
55 ;; And I do not like scrollbar neither
56 (when (functionp 'scroll-bar-mode) (scroll-bar-mode -1))
57
58 ;; Make all "yes or no" prompts be "y or n" instead
59 (fset 'yes-or-no-p 'y-or-n-p)
60
61 ;; Show the matching parenthesis and do it immediately, we are in a
62 ;; hurry
63 (setq show-paren-delay 0)
64 (show-paren-mode t)
65
66 ;; use colorization for all modes
67 (global-font-lock-mode t)
68
69 (setq font-lock-maximum-decoration 3
70       ;;'((latex-mode . 2) (t . 2))
71       )
72
73 ;; Activate the dynamic completion of buffer names
74 (iswitchb-mode 1)
75
76 ;; Save the minibuffer history
77 (setq savehist-file "~/private/emacs/savehist")
78 (when (functionp 'savehist-mode) (savehist-mode 1))
79
80 ;; And allow minibuffer recursion
81 (setq enable-recursive-minibuffers t)
82 (minibuffer-depth-indicate-mode 1)
83
84 ;; I do not like tooltips
85 (when (functionp 'tooltip-mode) (tooltip-mode nil))
86
87 ;; Activate the dynamic completion in the mini-buffer
88 (icomplete-mode 1)
89
90 ;; (setq highlight-current-line-globally t
91 ;; highlight-current-line-ignore-regexp "Faces\\|Colors\\| \\*Mini\\|\\*media\\|INBOX")
92
93 ;; (highlight-current-line-minor-mode 1)
94 ;; (highlight-current-line-set-bg-color "gray75")
95
96 (defun ff/compile-when-needed (name)
97   "Compiles the given file only if needed. Adds .el if required, and
98 uses `load-path' to find it."
99   (if (not (string-match "\.el$" name))
100       (ff/compile-when-needed (concat name ".el"))
101     (mapc (lambda (dir)
102             (let* ((src (concat dir "/" name)))
103               (when (file-newer-than-file-p src (concat src "c"))
104                 (if (let ((byte-compile-verbose nil))
105                       (condition-case nil
106                           (byte-compile-file src)
107                         (error nil)))
108                     (message (format "Compiled %s" src ))
109                   (message (format "Failed compilation of %s" src))))))
110           load-path)))
111
112 ;; This is useful when using the same .emacs in many places
113
114 (defun ff/load-or-alert (name &optional compile-when-needed)
115   "Tries to load the specified file and insert a warning message in a
116 load-warning buffer in case of failure."
117
118   (when compile-when-needed (ff/compile-when-needed name))
119
120   (if (load name t nil) t
121     (let ((buf (get-buffer-create "*loading warnings*")))
122       (display-buffer buf)
123       (set-buffer buf)
124       (insert (propertize "Warning:" 'face 'font-lock-warning-face) " could not load '" name "'\n")
125       (fit-window-to-buffer (get-buffer-window buf))
126       (set-buffer-modified-p nil))
127     nil))
128
129 ;; This is the default in emacs 22.1 and later
130 ;; (auto-compression-mode 1)
131
132 ;; make emacs use the clipboard so that copy/paste works for other
133 ;; x-programs. I have no clue how all that clipboard thing works.
134
135 ;; (setq x-select-enable-clipboard t)
136 ;; (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
137 ;; (setq x-select-enable-primary t)
138 ;; (setq x-select-enable-clipboard t)
139 ;; (global-set-key "\C-y" 'clipboard-yank)
140
141 (setq
142
143  message-log-max 1000
144
145  ;; avoid GC as much as possible
146  gc-cons-threshold 2500000
147
148  ;; no startup message
149  inhibit-startup-screen t
150
151  ;; no message in the scratch buffer
152  initial-scratch-message nil
153
154  ;; do not fill my buffers, you fool
155  next-line-add-newlines nil
156
157  ;; keep the window focused on the messages during compilation
158  compilation-scroll-output t
159
160  ;; Keep the highlight on the compilation error
161  next-error-highlight t
162
163  ;; blink the screen instead of beeping
164  ;; visible-bell t
165
166  ;; take the CR when killing a line
167  kill-whole-line t
168
169  ;; I prefer to move between lines as defined in the buffer, not
170  ;; visually
171  line-move-visual nil
172
173  ;; I comment empty lines, too (does not seem to work, though)
174  comment-empty-lines t
175
176  ;; We want long lines to be truncated instead of displayed on several lines
177  ;; truncate-lines t
178  ;; Show all lines, even if the window is not as large as the frame
179  ;; truncate-partial-width-windows nil
180  ;; truncate-partial-width-windows t
181
182  ;; Do not keep tracks of the autosaved files
183  auto-save-list-file-prefix nil
184
185  ;; Show me empty lines at the end of the buffer
186  default-indicate-empty-lines t
187
188  ;; Show me the region until I do something on it
189  transient-mark-mode t
190
191  ;; Do not color stuff which are clickable when hovering over it
192  mouse-highlight nil
193
194  ;; Don't bother me with questions even if "unsafe" local variables
195  ;; are set
196  enable-local-variables :all
197
198  ;; I have no problem with small windows
199  window-min-height 1
200
201  ;; I am not a fan of develock
202  develock-auto-enable nil
203
204  ;; I do not like women to open windows
205  woman-use-own-frame nil
206
207  ;; I am not that paranoid, contrary to what you think
208  epa-file-cache-passphrase-for-symmetric-encryption t
209  ;; And I like ascii files
210  epa-armor t
211
212  tramp-default-method "ssh"
213
214  ;; I have no problem with files having their own local variables
215  enable-local-eval t
216
217  mail-from-style 'angles
218  browse-url-mozilla-program "firefox"
219  mc-encrypt-for-me t
220  mc-use-default-recipients t
221
222  ;; browse-url-new-window-flag t
223
224  ;; I do not like compilation to automatically split the active window
225  ;; vertically, even when the said window is very wide
226  split-height-threshold 0
227  split-width-threshold nil
228
229  )
230
231 ;; The backups
232
233 (setq
234  temporary-file-directory "/tmp/"
235  vc-make-backup-files t
236  backup-directory-alist '((".*" . "~/misc/emacs.backups/"))
237  version-control t ;; Use backup files with numbers
238  kept-new-versions 10
239  kept-old-versions 2
240  delete-old-versions t
241  backup-by-copying-when-linked t
242  )
243
244 (setq tramp-backup-directory-alist backup-directory-alist)
245
246 (setq user-emacs-directory "~/misc/emacs.d/")
247
248 (setq
249  abbrev-file-name (concat user-emacs-directory "abbrev_defs")
250  server-auth-dir (concat user-emacs-directory "server/")
251  custom-theme-directory user-emacs-directory
252  )
253
254 ;; Stop this crazy blinking cursor
255 (blink-cursor-mode 0)
256
257 ;; (setq blink-cursor-delay 0.25
258 ;; blink-cursor-interval 0.25)
259
260 ;; (set-terminal-coding-system 'utf-8)
261
262 ;; (unless window-system
263 ;; (xterm-mouse-mode 1)
264 ;;   (if (string= (getenv "TERM") "xterm-256color")
265 ;;       (ff/load-or-alert "xterm-256color" t))
266 ;; )
267
268 (setq-default
269
270  ;; Show white spaces at the end of lines
271  show-trailing-whitespace t
272
273  ;; Do not show the cursor in non-active window
274  cursor-in-non-selected-windows nil
275
276  use-dialog-box nil
277  use-file-dialog nil
278
279  ;; when on a TAB, the cursor has the TAB length
280  x-stretch-cursor t
281
282  ;; This is the default coding system when toggle-input-method is
283  ;; invoked (C-\)
284  default-input-method "latin-1-prefix"
285  ;; do not put tabs when indenting
286  indent-tabs-mode nil
287  ;; And yes, we have a fast display / connection / whatever
288  baud-rate 524288
289  ;; baud-rate 10
290
291  ;; To keep the cursor always visible when it moves (thanks
292  ;; snogglethrop!)
293  redisplay-dont-pause t
294
295  ;; I want to see the keys I type instantaneously
296  echo-keystrokes 0.1
297  )
298
299 ;; Show the column number
300 (column-number-mode 1)
301
302 ;; What modes for what file extentions
303 (add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode))
304
305 (require 'org-table)
306
307 (add-to-list 'auto-mode-alist '("\\.txt\\'" . (lambda()
308                                                 (text-mode)
309                                                 (orgtbl-mode)
310                                                 ;; (auto-fill-mode)
311                                                 (flyspell-mode))))
312
313 (add-hook 'c++-mode-hook 'flyspell-prog-mode)
314 (add-hook 'log-edit-mode-hook 'flyspell-mode)
315
316 ;; I am a power-user
317
318 (put 'narrow-to-region 'disabled nil)
319 (put 'upcase-region 'disabled nil)
320 (put 'downcase-region 'disabled nil)
321 ;; (put 'scroll-left 'disabled nil)
322 ;; (put 'scroll-right 'disabled nil)
323
324 ;; My selector is clearer than that
325 ;; (when (load "ido" t) (ido-mode t))
326
327 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
328
329 ;; Makes buffer names more explicit then <2>, <3> etc. when there are
330 ;; several identical filenames
331
332 (when (load "uniquify" t)
333   (setq uniquify-buffer-name-style 'post-forward-angle-brackets))
334
335 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
336 ;; Appearance
337 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
338
339 (when (boundp 'x-display-name)
340
341   (setq-default
342
343    ;; If the display is :0.0, we make the assumption that we are
344    ;; running the emacs locally, and we do not show the
345    ;; hostname. Otherwise, show @host.
346
347    frame-title-format (concat "emacs" ;;invocation-name
348                               (unless (string= x-display-name ":0.0")
349                                 (concat "@" system-name))
350                               " (%b)")
351
352    ;; Use the same for the icone
353
354    icon-title-format frame-title-format
355    ))
356
357 ;; "tool" bar? Are you kidding?
358 (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
359
360 ;; ;; If my own letter icon is here, use it and change its color
361 ;; (when (file-exists-p "~/local/share/emacs/letter.xbm")
362 ;; (setq-default display-time-mail-icon
363 ;; (find-image
364 ;; '((:type xbm
365 ;; :file "~/local/share/emacs/letter.xbm"
366 ;; :ascent center)))))
367
368 ;; My funky setting of face colors. Basically, we switch to a sober
369 ;; look and darken a bit the colors which need to (because of the
370 ;; darker background)
371
372 (defun ff/configure-faces (fl)
373   "Set face attributes and create faces when necessary"
374   (mapc (lambda (f)
375           (unless (boundp (car f)) (make-empty-face (car f)))
376           (eval `(set-face-attribute (car f) nil ,@(cdr f))))
377         fl))
378
379 ;; Not the same in xterm (which is gray in my case) and in
380 ;; X-window
381
382 (unless window-system
383   ;;     (xterm-mouse-mode 1)
384   (ff/configure-faces
385    '((italic :underline nil)
386      (info-title-2 :foreground "green")
387      (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
388      (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
389      (diff-added :background "gray90" :foreground "green4" :weight 'bold)
390      (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
391      (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
392      (diff-file-header-face :background "white" :foreground "black"
393                             :weight 'bold)
394      (diff-header-face :background "white" :foreground "black")
395      (diff-hunk-header-face :background "white" :foreground "black")
396      (diff-indicator-removed :foreground "red" :weight 'bold)
397      (diff-removed :foreground "red" :weight 'bold)
398      (diff-indicator-added :foreground "blue" :weight 'bold)
399      (diff-added :foreground "blue" :weight 'bold)
400      (font-lock-string-face :foreground "green")
401      (font-lock-variable-name-face :foreground "blue")
402      (font-lock-constant-face :foreground "blue")
403      (font-lock-function-name-face :foreground "blue")
404      (font-lock-preprocessor-face :foreground "green")
405      (font-lock-function-name-face :foreground "cyan")
406      (flyspell-incorrect-face :foreground "red2")
407      (flyspell-duplicate-face :foreground "OrangeRed2")
408      (hl-line :background "white")
409      (sh-heredoc :foreground "black" :background "#fff0f0")
410      (sh-heredoc-face :foreground "black" :background "#fff0f0")
411      (font-lock-keyword-face :foreground "blue")
412      (highlight :background "darkseagreen3")
413      (isearch :background "orange" :foreground "black")
414      (isearch-lazy-highlight-face' :background "yellow" :foreground "black")
415      ;; (display-time-mail-face :background "white")
416      (show-paren-match-face :background "gold" :foreground "black")
417      (show-paren-mismatch-face :background "red" :foreground "black")
418      (trailing-whitespace :background "white")
419      (mode-line :background "cornflowerblue" :foreground "black" :box nil
420                 :inverse-video nil)
421      (header-line :background "cornflowerblue" :foreground "black" :box nil
422                   :inverse-video nil)
423      (mode-line-inactive :background "gray60" :foreground "black" :box nil
424                          :inverse-video nil)
425      (region :background "springgreen2")
426      (ff/date-info-face :foreground "white" :weight 'bold)
427      (ff/mail-alarm-face :foreground "red" :weight 'bold)
428      (gui-button-face :background "green" :foreground "white")
429      (enotes/information-face :foreground "cyan")
430      ))
431   )
432
433 ;; (list-colors-display (mapcar 'car color-name-rgb-alist))
434
435 ;; (ff/configure-faces '((default :background "black" :foreground "gray80")))
436 ;; (ff/configure-faces '((default :background "gray80" :foreground "black")))
437
438 (when window-system
439   ;; (setq
440   ;; display-time-use-mail-icon t)
441
442   (ff/configure-faces
443    '(
444      ;; (escape-glyph :foreground "#c0c0c0" :weight 'bold)
445
446      (escape-glyph :foreground "green3" :weight 'bold)
447      (default :background "gray90" :foreground "black")
448      (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
449      (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
450      (message-cited-text :foreground "red4")
451      (diff-mode :background "gray90" :weight 'bold)
452      (diff-added :background "gray90" :foreground "green4" :weight 'bold)
453      (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
454      (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
455      (diff-file-header :background "white" :foreground "black"
456                        :weight 'bold)
457      (diff-header :background "white" :foreground "black")
458      (diff-hunk-header :background "white" :foreground "black")
459      (font-lock-builtin-face :foreground "deeppink3")
460      (font-lock-string-face :foreground "dark olive green")
461      (font-lock-variable-name-face :foreground "sienna")
462      (font-lock-function-name-face :foreground "blue4" :weight 'bold)
463      ;; (font-lock-comment-delimiter-face :foreground "dark violet")
464      ;; (font-lock-comment-face :foreground "dark violet")
465      (flyspell-incorrect-face :foreground "red2")
466      (flyspell-duplicate-face :foreground "OrangeRed2")
467      (hl-line :background "white")
468      (sh-heredoc :foreground "black" :background "#fff0f0")
469      (sh-heredoc-face :foreground "black" :background "#fff0f0")
470      (header-line :background "gray65")
471      (highlight :background "turquoise")
472      (message-cited-text-face :foreground "firebrick")
473      (isearch :background "yellow" :foreground "black")
474      (isearch-lazy-highlight-face' :background "yellow3" :foreground "black")
475      (region :background "#b8b8e0" :foreground "black")
476      ;; (region :background "plum" :foreground "black")
477      (show-paren-match-face :background "gold" :foreground "black")
478      (show-paren-mismatch-face :background "red" :foreground "black")
479      (trailing-whitespace :background "gray65")
480      (cursor :inverse-video t)
481      (enotes/list-title-face :foreground "blue" :weight 'bold)
482      (mode-line :background "#b0b0ff" :foreground "black" :box nil
483                 :inverse-video nil)
484      (header-line :background "cornflowerblue" :foreground "black" :box nil
485                   :inverse-video nil)
486      (mode-line-inactive :background "gray80" :foreground "black" :box nil
487                          :inverse-video nil)
488      ;; (fringe :background "black" :foreground "gray90")
489      (fringe :background "gray80")
490      (ff/date-info-face :foreground "white" :weight 'bold)
491      (ff/mail-alarm-face :foreground "white" :background "red2")
492      ;; (alarm-vc-face :foreground "black" :background "yellow" :weight 'normal)
493     ))
494   )
495
496 ;; When we are root, put the modeline in red
497
498 (when (string= (user-real-login-name) "root")
499   (ff/configure-faces
500    '((mode-line :background "red3" :foreground "black" :box nil
501                 :inverse-video nil))
502    ))
503
504 ;; Why should I have to do this?
505 (add-hook 'sh-mode-hook
506           (lambda ()
507             (set-face-attribute 'sh-heredoc nil
508                                 :foreground "#604000"
509                                 :background "white"
510                                 :italic t)
511             (set-face-attribute 'sh-heredoc-face nil
512                                 :foreground "#604000"
513                                 :background "white"
514                                 :italic t)
515             ))
516
517 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
518 ;; Move the window on the buffer without moving the cursor
519 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
520
521 (defun ff/scroll-down ()
522   "Scroll the buffer down one line and keep the cursor at the same location."
523   (interactive)
524   (condition-case nil
525       (scroll-down 1)
526     (error nil)))
527
528 (defun ff/scroll-up ()
529   "Scroll the buffer up one line and keep the cursor at the same location."
530   (interactive)
531   (condition-case nil
532       (scroll-up 1)
533     (error nil)))
534
535 (defun ff/scroll-left ()
536   "Scroll the buffer left one column and keep the cursor at the same location."
537   (interactive)
538   (condition-case nil
539       (scroll-left 2)
540     (error nil)))
541
542 (defun ff/scroll-right ()
543   "Scroll the buffer right one column and keep the cursor at the same location."
544   (interactive)
545   (condition-case nil
546       (scroll-right 2)
547     (error nil)))
548
549 (define-key global-map [(meta up)] 'ff/scroll-down)
550 (define-key global-map [(meta down)] 'ff/scroll-up)
551 (define-key global-map [(meta p)] 'ff/scroll-down)
552 (define-key global-map [(meta n)] 'ff/scroll-up)
553 (define-key global-map [(meta right)] 'ff/scroll-left)
554 (define-key global-map [(meta left)] 'ff/scroll-right)
555
556 (defun ff/delete-trailing-whitespaces-and-indent ()
557   (interactive)
558   (delete-trailing-whitespace)
559   (indent-region (point-min) (point-max) nil))
560
561 (define-key global-map [(control c) (control q)] 'ff/delete-trailing-whitespaces-and-indent)
562
563 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
564 ;; Playing sounds
565 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
566
567 ;; (defun ff/esd-sound (file)
568 ;;   "Plays a sound with the Enlighted sound daemon."
569 ;;   (interactive)
570 ;;   (process-kill-without-query (start-process-shell-command "esdplay"
571 ;;                                                            nil
572 ;;                                                            "esdplay" file)))
573
574 (defun ff/alsa-sound (file)
575   "Plays a sound with ALSA."
576   (interactive)
577   (process-kill-without-query (start-process-shell-command "aplay"
578                                                            nil
579                                                            "aplay" "-q" file)))
580
581 (if (and (boundp 'x-display-name) (string= x-display-name ":0.0"))
582     (defalias 'ff/play-sound-async 'ff/alsa-sound)
583   (defalias 'ff/play-sound-async 'ding))
584
585 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
586 ;; I comment stuff often, let's be efficient. shift + down comments
587 ;; the current line and goes down, and shift + up uncomments the line
588 ;; and goes up (they are not the dual of each other, but moving and
589 ;; then uncommenting would be very counter-intuitive).
590 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
591
592 (defun ff/comment-and-go-down (arg)
593   "Comments and goes down ARG lines."
594   (interactive "p")
595   (condition-case nil
596       (comment-region (point-at-bol) (point-at-eol)) (error nil))
597   (next-line 1)
598   (if (> arg 1) (ff/comment-and-go-down (1- arg))))
599
600 (defun ff/uncomment-and-go-up (arg)
601   "Uncomments and goes up ARG lines."
602   (interactive "p")
603   (condition-case nil
604       (uncomment-region (point-at-bol) (point-at-eol)) (error nil))
605   (next-line -1)
606   (if (> arg 1) (ff/uncomment-and-go-up (1- arg))))
607
608 (define-key global-map [(shift down)] 'ff/comment-and-go-down)
609 (define-key global-map [(shift up)] 'ff/uncomment-and-go-up)
610
611 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
612 ;; Counting various entities in text
613 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
614
615 (defun ff/word-occurences ()
616   "Display in a new buffer the list of words sorted by number of
617 occurrences "
618   (interactive)
619
620   (let ((buf (get-buffer-create "*word counting*"))
621         (map (make-sparse-keymap))
622         (nb (make-hash-table))
623         (st (make-hash-table))
624         (result nil))
625
626     ;; Collects all words in a hash table
627
628     (save-excursion
629       (goto-char (point-min))
630       (while (re-search-forward "\\([\\-a-zA-Z\\\\]+\\)" nil t)
631         (let* ((s (downcase (match-string-no-properties 1)))
632                (k (sxhash s)))
633           (puthash k s st)
634           (puthash k (1+ (gethash k nb 0)) nb))))
635
636     ;; Creates the result buffer
637
638     (define-key map "q" 'kill-this-buffer)
639     (display-buffer buf)
640     (set-buffer buf)
641     (setq show-trailing-whitespace nil)
642     (erase-buffer)
643
644     ;; Builds a list from the hash table
645
646     (maphash
647      (lambda (key value)
648        (setq result (cons (cons value (gethash key st)) result)))
649      nb)
650
651     ;; Sort and display it
652
653     (mapc (lambda (x)
654             (if (and (> (car x) 3)
655                      ;; No leading backslash and at least four characters
656                      (string-match "^[^\\]\\{4,\\}" (cdr x))
657                      )
658                 (insert (number-to-string (car x)) " " (cdr x) "\n")))
659           (sort result (lambda (a b) (> (car a) (car b)))))
660
661     ;; Adjust the window size and stuff
662
663     (fit-window-to-buffer (get-buffer-window buf))
664     (use-local-map map)
665     (set-buffer-modified-p nil))
666   )
667
668 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
669 ;; Printing
670 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
671
672 (load "ps-print")
673
674 (setq ps-print-color-p nil
675       ps-paper-type 'letter
676       ;; ps-paper-type 'a4
677       ;; ps-top-margin (* 1.75 56.692)
678       ;; ps-left-margin 56.692
679       ;; ps-bottom-margin 56.692
680       ;; ps-right-margin 56.692
681
682       ;; Simple header. Remove that silly frame shadow.
683       ps-print-header nil
684       ps-print-header-frame nil
685       ps-header-line-pad 0.3
686       ps-header-font-family 'Courier
687       ps-header-title-font-size '(8.5 . 10)
688       ps-header-font-size '(6 . 7)
689       ps-font-size '(7 . 8)
690       )
691
692 (ps-put 'ps-header-frame-alist 'back-color 1.0)
693 (ps-put 'ps-header-frame-alist 'shadow-color 1.0)
694 (ps-put 'ps-header-frame-alist 'border-color 0.0)
695 (ps-put 'ps-header-frame-alist 'border-width 0.0)
696
697 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
698
699 ;; http://blog.tuxicity.se/elisp/emacs/2010/03/26/rename-file-and-buffer-in-emacs.htm
700
701 (defun rename-file-and-buffer ()
702   "Renames current buffer and file it is visiting."
703   (interactive)
704   (let ((name (buffer-name))
705         (filename (buffer-file-name)))
706     (if (not (and filename (file-exists-p filename)))
707         (message "Buffer '%s' is not visiting a file!" name)
708       (let ((new-name (read-file-name "New name: " filename)))
709         (cond ((get-buffer new-name)
710                (message "A buffer named '%s' already exists!" new-name))
711               (t
712                (rename-file name new-name 1)
713                (rename-buffer new-name)
714                (set-visited-file-name new-name)
715                (set-buffer-modified-p nil)))))))
716
717 (global-set-key (kbd "C-c r") 'rename-file-and-buffer)
718
719 (defun ff/non-existing-filename (dir prefix suffix)
720   "Returns a filename of the form DIR/PREFIX[.n].SUFFIX whose file does
721 not exist"
722   (let ((n 0)
723         (f (concat prefix suffix)))
724     (while (file-exists-p (concat dir "/" f))
725       (setq n (1+ n)
726             f (concat prefix "." (prin1-to-string n) suffix)))
727     f))
728
729 (defun ff/print-buffer-or-region-with-faces (&optional file)
730
731   ;; I am fed up with spell checking highlights
732   (when (and flyspell-mode
733              ;; (or ispell-minor-mode flyspell-mode)
734              (not (y-or-n-p "The spell checking is on, still print ? ")))
735     (error "Printing cancelled, the spell-checking is on"))
736
737   (unless
738       (condition-case nil
739           (ps-print-region-with-faces (region-beginning) (region-end) file)
740         (error nil))
741     (ps-print-buffer-with-faces file)))
742
743 (defun ff/print-to-file (file)
744   "Prints the region if selected or the whole buffer in postscript
745 into FILE."
746   (interactive
747    (list
748     (read-file-name
749      "PS file: " "/tmp/" nil nil
750      (ff/non-existing-filename
751       "/tmp"
752       (replace-regexp-in-string "[^a-zA-Z0-9_.-]" "_" (file-name-nondirectory
753                                                        (buffer-name)))
754       ".ps"))
755     ))
756   (ff/print-buffer-or-region-with-faces file))
757
758 (defun ff/print-to-printer ()
759   "Prints the region if selected or the whole buffer to a postscript
760 printer."
761   (interactive)
762   (message "Printing to '%s'" (getenv "PRINTER"))
763   (ff/print-buffer-or-region-with-faces))
764
765 ;; Can you believe it? There is a "print" key on PC keyboards ...
766
767 (define-key global-map [(print)] 'ff/print-to-file)
768 (define-key global-map [(shift print)] 'ff/print-to-printer)
769
770 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
771 ;; Dealing with the laptop battery
772 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
773
774 (defcustom ff/battery-dir "/sys/class/power_supply/BAT0"
775   "*Where to gather the battery information")
776
777 (defcustom ff/temperature-file "/sys/class/thermal/thermal_zone0/temp"
778   "*Where to gather the thermal information")
779
780 (defun ff/file-first-line (file)
781   (with-temp-buffer
782     (insert-file-contents-literally file)
783     (buffer-substring (point-at-bol) (point-at-eol))))
784
785 (defun ff/battery-percent (prefix)
786   (condition-case nil
787       (/ (* 100 (string-to-number (ff/file-first-line (format "%s/%s_now" ff/battery-dir prefix))))
788          (string-to-number (ff/file-first-line (format "%s/%s_full"  ff/battery-dir prefix))))
789     (error -1))
790   )
791
792 (defun ff/laptop-info-string () (interactive)
793   (condition-case nil
794       (concat
795
796        ;; The temperature
797
798        (let ((temp (/ (string-to-number (ff/file-first-line ff/temperature-file)) 1000)))
799          (if (> temp 50)
800              (concat
801               (let ((s (format "%dC " temp)))
802                 (if (> temp 65) (propertize s 'face
803                                             'font-lock-warning-face)
804                   s))
805               )
806            )
807          )
808
809        ;; The battery
810
811        (let ((battery-status (ff/file-first-line (concat ff/battery-dir "/status"))))
812
813          (cond
814           ((string= battery-status "Full") "L")
815
816           ((string= battery-status "Charging")
817            (format "L%d%%" (max (ff/battery-percent "charge")
818                                 (ff/battery-percent "energy"))))
819
820           ((string= battery-status "Discharging")
821            (let* ((c (max (ff/battery-percent "charge")
822                           (ff/battery-percent "energy")))
823                   (s (format "B%d%%" c)))
824              (if (>= c 20) s (propertize s 'face 'font-lock-warning-face))))
825
826           (t battery-status)
827
828           ))
829
830        )
831
832     (error nil))
833   )
834
835 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
836
837 (defun ff/system-info () (interactive)
838
839   (let ((buf (get-buffer-create "*system info*"))
840         (map (make-sparse-keymap)))
841
842     (define-key map "q" 'kill-this-buffer)
843     (display-buffer buf)
844     (set-buffer buf)
845     (setq show-trailing-whitespace nil)
846     (erase-buffer)
847
848     (let ((highlight nil))
849
850       (mapc (lambda (x)
851               (insert
852                (if (setq highlight (not highlight))
853                    (propertize
854                     (with-temp-buffer (apply 'call-process x)
855                                       (buffer-string))
856                     'face '(:background "#c0c0ff"))
857                  (with-temp-buffer (apply 'call-process x)
858                                    (buffer-string))
859                  ))
860               )
861
862             '(
863               ("hostname" nil t nil "-v")
864               ("acpi" nil t)
865               ("df" nil t nil "-h")
866               ;; ("mount" nil t)
867               ("ifconfig" nil t)
868               ("ssh-add" nil t nil "-l")
869               )))
870
871     (goto-char (point-min))
872     (while (re-search-forward "^$" nil t) (backward-delete-char 1))
873
874     (fit-window-to-buffer (get-buffer-window buf))
875     (use-local-map map)
876     (set-buffer-modified-p nil)
877     ))
878
879 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
880 ;; Make a sound when there is new mail
881 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
882
883 ;; I do not like sounds anymore
884
885 ;; (setq ff/already-boinged-for-mail nil)
886
887 ;; (defun ff/boing-if-new-mail ()
888 ;; (if mail (when (not ff/already-boinged-for-mail)
889 ;; ;; (ff/play-sound-async "~/local/sounds/boing1.wav")
890 ;; ;; (ff/show-unspooled-mails)
891 ;; (setq ff/already-boinged-for-mail t))
892 ;; (setq ff/already-boinged-for-mail nil))
893 ;; )
894
895 ;; (add-hook 'display-time-hook 'ff/boing-if-new-mail)
896
897 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
898 ;; Display time
899 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
900
901 (setq
902
903  display-time-interval 15 ;; Check every 15s
904
905  display-time-string-forms `(
906
907                              ;; (if mail
908                              ;;     (concat " "
909                              ;;             (propertize " mail "
910                              ;;                         'face 'ff/mail-alarm-face)
911                              ;;             " ")
912                              ;;   )
913
914                              (propertize (concat 24-hours ":" minutes
915                                                  " "
916                                                  dayname " "
917                                                  monthname " "
918                                                  day)
919                                          'face 'ff/date-info-face)
920
921                              load
922
923                              ,(if (ff/laptop-info-string)
924                                   '(concat " " (ff/laptop-info-string)))
925
926                              )
927
928  ;; display-time-format "%b %a %e %H:%M"
929  ;; display-time-mail-face nil
930  )
931
932 ;; Show the time, mail and stuff
933 (display-time)
934
935 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
936 ;; Moving through buffers
937 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
938
939 (defun ff/next-buffer ()
940   "Switches to the next buffer in cyclic order."
941   (interactive)
942   (let ((buffer (current-buffer)))
943     (switch-to-buffer (other-buffer buffer))
944     (bury-buffer buffer)))
945
946 (defun ff/prev-buffer ()
947   "Switches to the previous buffer in cyclic order."
948   (interactive)
949   (let ((list (nreverse (buffer-list)))
950         found)
951     (while (and (not found) list)
952       (let ((buffer (car list)))
953         (if (and (not (get-buffer-window buffer))
954                  (not (string-match "\\` " (buffer-name buffer))))
955             (setq found buffer)))
956       (setq list (cdr list)))
957     (switch-to-buffer found)))
958
959 (define-key global-map [?\C-x right] 'ff/next-buffer)
960 (define-key global-map [?\C-x left] 'ff/prev-buffer)
961
962 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
963 ;; There is actually a decent terminal emulator in emacs!
964 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
965
966 (load "term")
967
968 (defun ff/kill-associated-buffer (process str) (interactive)
969   (let ((buffer (process-buffer process)))
970     (kill-buffer buffer))
971   (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
972
973 (defun ff/kill-associated-buffer-and-delete-windows (process str) (interactive)
974   (let ((buffer (process-buffer process)))
975     (delete-windows-on buffer)
976     (kill-buffer buffer))
977   (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
978
979 (defun ff/shell-new-buffer (buffername program &rest param)
980   "Start a terminal-emulator in a new buffer with the shell PROGRAM,
981 optionally invoked with the parameters PARAM. The process associated
982 to the shell can be killed without query."
983
984   (interactive)
985
986   (let ((n 1)
987         (bn buffername))
988
989     (while (get-buffer (concat "*" bn "*"))
990       (setq n (1+ n)
991             bn (format "%s<%d>" buffername n)))
992
993     (set-buffer (apply 'make-term (append (list bn program nil) param)))
994
995     (setq show-trailing-whitespace nil)
996     (term-char-mode)
997     (message "C-c C-k term-char-mode, C-c C-j term-line-mode. \
998 In line mode: M-p previous line, M-n next line.")
999
1000     ;; A standard setup of the face above is not enough, I have to
1001     ;; force them here. Since I have a gray90 background, I like
1002     ;; darker colors.
1003
1004     (when window-system
1005       (ff/configure-faces
1006        '((term-green :foreground "green3")
1007          (term-cyan :foreground "cyan3")
1008          (term-default-fg-inv :foreground "gray90" :background "black")
1009          )))
1010
1011     (term-set-escape-char ?\C-x)
1012
1013     ;; I like the shell buffer and windows to be deleted when the
1014     ;; shell process terminates. It's a bit of a mess to acheive this.
1015
1016     (let ((process (get-buffer-process (current-buffer))))
1017       (process-kill-without-query process)
1018       (set-process-sentinel process
1019                             ;; 'ff/kill-associated-buffer-and-delete-windows
1020                             'ff/kill-associated-buffer
1021                             ))
1022
1023     ;; (switch-to-buffer-other-window (concat "*" bn "*"))
1024     (switch-to-buffer (concat "*" bn "*"))
1025     ))
1026
1027 (defcustom ff/default-bash-commands '("ssh")
1028   "*List of commands to be used for completion when invoking a new
1029 bash shell with `ff/bash-new-buffer'.")
1030
1031 (defun ff/bash-new-buffer (universal)
1032   "Starts a bash in a new buffer. When invoked with a universal
1033 argument, asks for a command to execute in that bash shell. The list
1034 of commands in `ff/default-bash-commands' is used for auto-completion"
1035   (interactive "P")
1036
1037   (if universal
1038       (let ((cmd (completing-read
1039                   "Command: "
1040                   (mapcar (lambda (x) (cons x t)) ff/default-bash-commands))))
1041         (ff/shell-new-buffer cmd "/bin/bash" "-c" cmd))
1042
1043     (ff/shell-new-buffer "bash" "/bin/bash")))
1044
1045 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1046 ;; vc stuff for CVS
1047 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1048
1049 (setq ;; Always follow links if the file is under version control
1050  vc-follow-symlinks t
1051  )
1052
1053 (when (load "vc-git" nil t)
1054   (add-to-list 'vc-handled-backends 'GIT))
1055
1056 ;; alarm-vc.el is one of my own scripts, check my web page
1057
1058 (when (ff/load-or-alert "alarm-vc" t)
1059   (setq alarm-vc-mode-exceptions "^VM"))
1060
1061 (when (ff/load-or-alert "git")
1062   (setq git-show-unknown nil)
1063   )
1064
1065 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1066 ;; Makes .sh and others files executable automagically
1067 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1068
1069 ;; Please consider the security-related consequences of using it
1070
1071 ;; (defun ff/make-shell-scripts-executable (&optional filename)
1072 ;; (setq filename (or filename (buffer-name)))
1073 ;; (when (and (string-match "\\.sh$\\|\\.pl$\\|\\.rb" filename)
1074 ;; (not (file-executable-p filename))
1075 ;; )
1076 ;; (set-file-modes filename 493)
1077 ;; (message "Made %s executable" filename)))
1078
1079 ;; (add-hook 'after-save-hook 'ff/make-shell-scripts-executable)
1080
1081 (add-hook 'after-save-hook
1082           'executable-make-buffer-file-executable-if-script-p)
1083
1084 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1085 ;; Cool stuff to navigate in emacs-lisp sources
1086 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1087
1088 (load "find-func")
1089
1090 (defun ff/goto-function-definition (&optional goback)
1091   "Go directly to the definition of the function at point. With
1092 goback argument, go back where we were."
1093   (interactive "P")
1094   (if goback
1095       (if (not (and (boundp 'goto-function-history) goto-function-history))
1096           (error "We were nowhere, buddy")
1097         (message "Come back")
1098         (switch-to-buffer (car (car goto-function-history)))
1099         (goto-char (cdr (car goto-function-history)))
1100         (setq goto-function-history (cdr goto-function-history)))
1101
1102     (let ((function (function-called-at-point)))
1103       (when function
1104         (let ((location (find-function-search-for-symbol
1105                          function nil
1106                          (symbol-file function))))
1107           (setq goto-function-history
1108                 (cons (cons (current-buffer) (point))
1109                       (and (boundp 'goto-function-history)
1110                            goto-function-history)))
1111           (pop-to-buffer (car location))
1112           (goto-char (cdr location)))))))
1113
1114 (define-key global-map [(meta g)] 'ff/goto-function-definition)
1115 (define-key global-map [(meta G)] (lambda () (interactive)
1116                                     (ff/goto-function-definition t)))
1117
1118 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1119 ;; The big stuff (bbdb, mailcrypt, etc.)
1120 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1121
1122 ;; Failsafe version if we can't load bbdb
1123 (defun ff/explicit-name (email) email)
1124
1125 (load "vc-git")
1126
1127 (when (ff/load-or-alert "bbdb")
1128
1129   (setq
1130    ;; Stop asking (if not t or nil, will not ask)
1131    bbdb-offer-save 'never
1132    ;; I hate when bbdb decides to mess up my windows
1133    bbdb-use-pop-up nil
1134    ;; I have no problem with bbdb asking me if the sender email
1135    ;; does not match exactly the address we have in the database
1136    bbdb-quiet-about-name-mismatches 0
1137    ;; I have european friends, too
1138    bbdb-north-american-phone-numbers-p nil
1139    ;; To cycle through all possible addresses
1140    bbdb-complete-name-allow-cycling t
1141    ;; Cycle with full names only, not through all net-addresses alone too
1142    bbdb-dwim-net-address-allow-redundancy t
1143    ;; Do not add new addresses automatically
1144    bbdb-always-add-addresses nil
1145    )
1146
1147   (defface ff/known-address-face
1148     '((t (:foreground "blue2")))
1149     "The face to display known mail identities.")
1150
1151   (defface ff/unknown-address-face
1152     '((t (:foreground "gray50")))
1153     "The face to display unknown mail identities.")
1154
1155   (defun ff/explicit-name (email)
1156     "Returns a string identity for the first address in EMAIL. The
1157 identity is taken from bbdb if possible or from the address itself
1158 with mail-extract-address-components. The suffix \"& al.\" is added if
1159 there are more than one address.
1160
1161 If no bbdb record is found, the name is propertized with the face
1162 ff/unknown-address-face. If a record is found and contains a note
1163 'face, the associated face is used, otherwise
1164 ff/known-address-face is used."
1165
1166     (and email
1167          (let* ((data (mail-extract-address-components email))
1168                 (name (car data))
1169                 (net (cadr data))
1170                 (record (bbdb-search-simple nil net)))
1171
1172            (concat
1173
1174             (condition-case nil
1175                 (propertize (bbdb-record-name record)
1176                             'face
1177                             (or (cdr (assoc 'face
1178                                             (bbdb-record-raw-notes record)))
1179                                 'ff/known-address-face))
1180               (error
1181                (propertize (or (and data (concat "<" net ">"))
1182                                "*undefined*")
1183                            'face 'ff/unknown-address-face)
1184                ))
1185             (if (string-match "," (mail-strip-quoted-names email)) " & al.")
1186             )))
1187     )
1188
1189   (ff/configure-faces '((ff/robot-address-face :foreground "green4")
1190                         (ff/personal-address-face :foreground "dark magenta"
1191                                                   :weight 'bold)
1192                         (ff/important-address-face :foreground "blue2"
1193                                                    ;; :underline t
1194                                                    ;; :background "white"
1195                                                    ;; :foreground "green4"
1196                                                    :weight 'bold
1197                                                    ;; :slant 'italic
1198                                                    )))
1199
1200   )
1201
1202 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1203 ;; An encrypted file to put secure stuff (passwords, ...)
1204 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1205
1206 (when (ff/load-or-alert "mailcrypt")
1207   (mc-setversion "gpg")
1208   ;; Keep the passphrase for 10min
1209   (setq mc-passwd-timeout 600
1210         ff/secure-note-file "~/private/secure-notes.gpg")
1211   )
1212
1213 (defface ff/secure-date
1214   '((t (:background "white" :weight bold)))
1215   "The face to display the dates in the modeline.")
1216
1217 (defun ff/secure-note-add () (interactive)
1218   (find-file ff/secure-note-file)
1219
1220   ;; Adds a new entry (i.e. date and a bunch of empty lines)
1221
1222   (goto-char (point-min))
1223   (insert "-- "
1224           (format-time-string "%Y %b %d %H:%M:%S" (current-time))
1225           " --\n\n")
1226   (previous-line 1)
1227
1228   ;; Colorizes the dates
1229
1230   (save-excursion
1231     (goto-char (point-min))
1232     (while (re-search-forward
1233             "^-- [0-9]+ [a-z]+ [0-9]+ [0-9]+:[0-9]+:[0-9]+ -+$"
1234             nil t)
1235       (add-text-properties
1236        (match-beginning 0) (1+ (match-end 0))
1237        '(face ff/secure-date rear-nonsticky t))))
1238
1239   (set-buffer-modified-p nil)
1240   (setq buffer-undo-list nil)
1241   )
1242
1243 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1244 ;; Spelling
1245 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1246
1247 (setq ;; For french, aspell is far better than ispell
1248  ispell-program-name "aspell"
1249  ;; To avoid ispell errors in figure filenames, labels, references.
1250  ;;       ispell-tex-skip-alists
1251  ;;       (list
1252  ;;        (append (car ispell-tex-skip-alists)
1253  ;;                '(("\\\\citep"           ispell-tex-arg-end) ;; JMLR
1254  ;;                  ("\\\\cite"            ispell-tex-arg-end)
1255  ;;                  ("\\\\nocite"          ispell-tex-arg-end)
1256  ;;                  ("\\\\includegraphics" ispell-tex-arg-end)
1257  ;;                  ("\\\\author"          ispell-tex-arg-end)
1258  ;;                  ("\\\\ref"             ispell-tex-arg-end)
1259  ;;                  ("\\\\label"           ispell-tex-arg-end)
1260  ;;                  ))
1261  ;;        (cadr ispell-tex-skip-alists))
1262
1263  ;; So that reftex follows the text when moving in the summary
1264  reftex-toc-follow-mode nil
1265  ;; So that reftex visits files to follow
1266  reftex-revisit-to-follow t
1267  )
1268
1269 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1270 ;; Used in a \includegraphics runs xfig with the corresponding .fig
1271 ;; file or gimp with the corresponding bitmap picture
1272 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1273
1274 (defun ff/run-eps-edition (prefix rules &optional force)
1275   (if rules
1276       (let ((filename (concat prefix (car (car rules)))))
1277         (if (or force (file-exists-p filename))
1278             (start-process "latex-eps-editor" nil (cdr (car rules)) filename)
1279           (ff/run-eps-edition prefix (cdr rules) force)))
1280     (message "No original file found for %seps" prefix)))
1281
1282 (defcustom ff/xdvi-for-latex-options nil
1283   "*Options to pass to xdvi when invoking `ff/run-viewer'")
1284
1285 (defun ff/run-viewer (universal)
1286
1287   "Starts an editor for the .eps at point (either xfig or gimp,
1288 depending with the original file it can find), or starts xdvi for
1289 the current .tex if no .eps is found at point. When run with a
1290 universal argument starts xfig even if the .fig does not exist"
1291
1292   (interactive "P")
1293
1294   (if (and (save-excursion
1295              (and (re-search-backward "{" (point-at-bol) t)
1296                   (or (re-search-forward "{\\([^{}]*.\\)eps}" (point-at-eol) t)
1297                       (re-search-forward "{\\([^{}]*.\\)pdf}" (point-at-eol) t)
1298                       (re-search-forward "{\\([^{}]*.\\)pdf_t}" (point-at-eol) t)
1299                       (re-search-forward "{\\([^{}]*.\\)png}" (point-at-eol) t)
1300                       (re-search-forward "{\\([^{}]*.\\)jpg}" (point-at-eol) t)
1301                       )))
1302            (and (<= (match-beginning 1) (point))
1303                 (>= (match-end 1) (- (point) 2))))
1304
1305       (ff/run-eps-edition (match-string-no-properties 1)
1306                           '(("fig" . "xfig")
1307                             ("jpg" . "gimp" )
1308                             ("png" . "gimp") ("pgm" . "gimp") ("ppm" . "gimp")
1309                             ("jpg" . "xv"))
1310                           universal)
1311
1312     (if (not (and (buffer-file-name) (string-match "\\(.*\\)\.tex$"
1313                                                    (buffer-file-name))))
1314         (message "Not a latex file!")
1315       (condition-case nil (kill-process xdvi-process) (error nil))
1316       (let ((dvi-name (concat (match-string 1 (buffer-file-name)) ".dvi")))
1317         (if (not (file-exists-p dvi-name)) (error "Can not find %s !" dvi-name)
1318           (message "Starting xdvi with %s" dvi-name)
1319           (setq xdvi-process (apply 'start-process
1320                                     (append '("xdvi-for-latex" nil "xdvi")
1321                                             ff/xdvi-for-latex-options
1322                                             (list dvi-name))))
1323           (process-kill-without-query xdvi-process))))
1324     ))
1325
1326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1327 ;; Tex mode
1328
1329 ;; When working on a tex file with other people, I can just change
1330 ;; ff/tex-command in the -*- part of the file so that I don't mess up
1331 ;; other's people configuration.
1332
1333 (defadvice tex-file (around ff/set-my-own-tex-command () activate)
1334   (let ((tex-command
1335          (or (and (boundp 'ff/tex-command)
1336                   ff/tex-command)
1337              tex-command)))
1338     ad-do-it))
1339
1340 ;; This is a bit hardcore, but really I can't bear the superscripts in
1341 ;; my emacs window and could not find another way to deactivate them.
1342
1343 (load "tex-mode")
1344 (defun tex-font-lock-suscript (pos) ())
1345
1346 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1347 ;; Prevents many errors from beeping and makes the others play a nifty
1348 ;; sound
1349 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1350
1351 (defun ff/ring-bell ()
1352   (unless (memq this-command
1353                 '(isearch-abort
1354                   abort-recursive-edit
1355                   exit-minibuffer
1356                   keyboard-quit
1357                   backward-delete-char-untabify
1358                   delete-backward-char
1359                   minibuffer-complete-and-exit
1360                   previous-line next-line
1361                   backward-char forward-char
1362                   scroll-up scroll-down
1363                   enlarge-window-horizontally shrink-window-horizontally
1364                   enlarge-window shrink-window
1365                   minibuffer-complete
1366                   ))
1367     ;; (message "command [%s]" (prin1-to-string this-command))
1368     ;; (ff/play-sound-async "~/local/sounds/short_la.wav")
1369     ))
1370
1371 (setq ring-bell-function 'ff/ring-bell)
1372
1373 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1374 ;; Past the content of the url currently in the kill-ring with
1375 ;; shift-click 2
1376 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1377
1378 (defun ff/insert-url (&optional url)
1379   "Downloads an URL with lynx and inserts it after the point."
1380   (interactive "MUrl: ")
1381   (when url
1382     (message "Inserting %s" url)
1383     (insert (concat "from: " url "\n\n"))
1384     ;; (call-process "lynx" nil t nil "-nolist" "-dump" url))
1385     (call-process "w3m" nil t nil "-dump" url))
1386   )
1387
1388 (define-key global-map [(shift mouse-2)]
1389   (lambda () (interactive) (ff/insert-url (current-kill 0))))
1390
1391 ;; lookup-dict is one of my own scripts, check my web page
1392
1393 (when (ff/load-or-alert "lookup-dict" t)
1394   (define-key global-map [(control \?)] 'lookup-dict))
1395
1396 ;; (defun ff/generate-password () (interactive)
1397 ;; (let ((c "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-"))
1398 ;; (nth (random (length c)) c))
1399
1400 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1401 ;; Automatization of things I do often
1402 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1403
1404 (defun ff/snip () (interactive)
1405   (let ((start (condition-case nil (region-beginning) (error (point))))
1406         (end (condition-case nil (region-end) (error (point)))))
1407     (goto-char end)
1408     (insert "---------------------------- snip snip -------------------------------\n")
1409     (goto-char start)
1410     (insert "---------------------------- snip snip -------------------------------\n")
1411     ))
1412
1413 (defun ff/start-latex ()
1414   "Adds all that stuff to start a new LaTeX document."
1415   (interactive)
1416   (goto-char (point-min))
1417   (insert "%% -*- mode: latex; mode: reftex; mode: flyspell; coding: utf-8; tex-command: \"pdflatex.sh\" -*-
1418
1419 \\documentclass[12pt]{article}
1420 \\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.5cm,right=2.5cm]{geometry}
1421 \\usepackage[utf8]{inputenc}
1422 \\usepackage{amsmath}
1423 \\usepackage{amssymb}
1424 \\usepackage[pdftex]{graphicx}
1425 \\usepackage{microtype}
1426 \\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue]{hyperref}
1427
1428 \\setlength{\\parindent}{0cm}
1429 \\setlength{\\parskip}{12pt}
1430 \\renewcommand{\\baselinestretch}{1.3}
1431
1432 \\def\\argmax{\\operatornamewithlimits{argmax}}
1433 \\def\\argmin{\\operatornamewithlimits{argmin}}
1434
1435 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1436 %% Sans serif fonts
1437 %% \\usepackage[T1]{fontenc}
1438 %% \\usepackage[scaled]{helvet}
1439 %% \\usepackage[cm]{sfmath}
1440 %% \\renewcommand{\\ttdefault}{pcr}
1441 %% \\renewcommand*\\familydefault{\\sfdefault}
1442 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1443 %% The \\todo command
1444 \\newcounter{nbdrafts}
1445 \\setcounter{nbdrafts}{0}
1446 \\makeatletter
1447 \\newcommand{\\checknbdrafts}{
1448 \\ifnum \\thenbdrafts > 0
1449 \\@latex@warning@no@line{*WARNING* The document contains \\thenbdrafts \\space draft note(s)}
1450 \\fi}
1451 \\newcommand{\\todo}[1]{\\addtocounter{nbdrafts}{1}{\\color{red} #1}}
1452 \\makeatother
1453 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1454
1455 \\begin{document}
1456
1457 ")
1458   (save-excursion
1459     (goto-char (point-max))
1460     (insert "
1461
1462 \\end{document}
1463 "))
1464   (latex-mode))
1465
1466 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1467
1468 (defun ff/add-copyrights ()
1469   "Adds two lines for the (C) at the beginning of current buffer."
1470   (interactive)
1471
1472   (let ((comment-style 'plain))
1473
1474     (goto-char (point-min))
1475
1476     ;; If this is a script, put the copyrights after the first line
1477
1478     (when (re-search-forward "^#!" nil t)
1479       (beginning-of-line)
1480       (next-line 1))
1481
1482     (let ((start (point))
1483           (comment-style 'box))
1484       (insert
1485        (concat
1486
1487         "\nSTART_IP_HEADER\n"
1488
1489         (when (boundp 'user-full-name)
1490           (concat "\nWritten by " user-full-name "\n"))
1491
1492         (when (boundp 'user-mail-address)
1493           (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1494
1495         "\nEND_IP_HEADER\n"
1496         ))
1497
1498       (comment-region start (point)))
1499
1500     ))
1501
1502 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1503
1504 (defun ff/remove-ip-header () (interactive)
1505   (save-excursion
1506     (goto-char (point-min))
1507     (when (and (re-search-forward "START_IP_HEADER" nil t)
1508                (re-search-forward "END_IP_HEADER" nil t))
1509       (message "yep"))
1510     ))
1511
1512 (defun ff/add-gpl ()
1513   "Adds the GPL statements at the beginning of current buffer."
1514   (interactive)
1515   (let ((comment-style 'box)
1516         (gpl
1517          (concat
1518
1519           ;;           "
1520           ;; This program is free software; you can redistribute it and/or
1521           ;; modify it under the terms of the GNU General Public License
1522           ;; version 2 as published by the Free Software Foundation.
1523
1524           ;; This program is distributed in the hope that it will be useful, but
1525           ;; WITHOUT ANY WARRANTY\; without even the implied warranty of
1526           ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1527           ;; General Public License for more details.
1528           ;; "
1529
1530           "
1531 START_IP_HEADER
1532
1533 This program is free software: you can redistribute it and/or modify
1534 it under the terms of the version 3 of the GNU General Public License
1535 as published by the Free Software Foundation.
1536
1537 This program is distributed in the hope that it will be useful, but
1538 WITHOUT ANY WARRANTY; without even the implied warranty of
1539 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1540 General Public License for more details.
1541
1542 You should have received a copy of the GNU General Public License
1543 along with this program. If not, see <http://www.gnu.org/licenses/>.
1544
1545 "
1546           (when (boundp 'user-full-name)
1547             (concat "Written by and Copyright (C) " user-full-name "\n"))
1548
1549           (when (boundp 'user-mail-address)
1550             (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1551
1552           "
1553 END_IP_HEADER
1554 "
1555
1556           )))
1557
1558     (goto-char (point-min))
1559
1560     ;; If this is a script, put the gpl after the first line
1561     (when (re-search-forward "^#!" nil t)
1562       (beginning-of-line)
1563       (next-line 1))
1564
1565     (let ((start (point)))
1566       (insert gpl)
1567       (comment-region start (point)))
1568     ))
1569
1570 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1571
1572 (defun ff/start-c ()
1573   "Adds the header to start a C program."
1574   (interactive)
1575   ;;   (beginning-of-buffer)
1576   (insert
1577    "
1578 #include <stdio.h>
1579 #include <stdlib.h>
1580
1581 int main(int argc, char **argv) {
1582   exit(EXIT_SUCCESS);
1583 }
1584 ")
1585   (previous-line 2)
1586   )
1587
1588 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1589
1590 (defun ff/start-c++ ()
1591   "Adds the header to start a C++ program."
1592   (interactive)
1593   ;;   (beginning-of-buffer)
1594   (insert
1595    "
1596 #include <iostream>
1597 #include <fstream>
1598 #include <cmath>
1599 #include <stdio.h>
1600 #include <stdlib.h>
1601
1602 using namespace std;
1603
1604 int main(int argc, char **argv) {
1605
1606 }
1607 ")
1608   (previous-line 2)
1609   )
1610
1611 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1612
1613 (defun ff/headerize ()
1614   "Adds the #define HEADER_H, etc."
1615   (interactive)
1616   (let ((flag-name (replace-regexp-in-string
1617                     "[\. \(\)]" "_"
1618                     (upcase (file-name-nondirectory (buffer-file-name))))))
1619     (goto-char (point-max))
1620     (insert "\n#endif\n")
1621     (goto-char (point-min))
1622     (insert (concat "#ifndef " flag-name "\n"))
1623     (insert (concat "#define " flag-name "\n"))
1624     )
1625   )
1626
1627 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1628
1629 (defun ff/start-html ()
1630   "Adds all that stuff to start a new HTML file."
1631   (interactive)
1632   (goto-char (point-min))
1633   (insert "<?xml version=\"1.0\" encoding=\"utf-8\"?>
1634 <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
1635
1636 <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
1637
1638 <head>
1639 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
1640 <title></title>
1641 </head>
1642
1643 <body>
1644 ")
1645   (goto-char (point-max))
1646   (insert "
1647 </body>
1648
1649 </html>
1650 ")
1651   (html-mode))
1652
1653 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1654
1655 ;; Insert a line showing all the variables written on the current line
1656 ;; and separated by commas
1657
1658 (defun ff/cout-var (arg)
1659   "Invoked on a line with a list of variables names,
1660 it inserts a line which displays their values in cout, or cerr if
1661 the function is invoked with a universal arg"
1662   (interactive "P")
1663   (let ((line (if arg "cerr" "cout")))
1664     (goto-char (point-at-bol))
1665     ;; Regexp syntax sucks moose balls, honnest. To match '[', just
1666     ;; put it as the first char in the [...] ... This leads to some
1667     ;; obvious things like the following
1668     (while (re-search-forward "\\([][a-zA-Z0-9_.:\(\)]+\\)" (point-at-eol) t)
1669       (setq line
1670             (concat line " << \" "
1671                     (match-string 1) " = \" << " (match-string 1))))
1672     (goto-char (point-at-bol))
1673     (kill-line)
1674     (insert line " << endl\;\n")
1675     (indent-region (point-at-bol 0) (point-at-eol 0) nil)
1676     ))
1677
1678 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1679
1680 (defun ff/clean-article ()
1681   "Cleans up an article by removing the leading blanks on each line
1682 and refilling all the paragraphs."
1683   (interactive)
1684   (let ((fill-column 92))
1685     (goto-char (point-min))
1686     (while (re-search-forward "^\\ +" nil t)
1687       (replace-match "" nil nil))
1688     (fill-individual-paragraphs (point-min) (point-max) t)))
1689
1690 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1691
1692 (defun ff/start-slide ()
1693   (interactive)
1694   (insert "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1695
1696 \\begin{frame}{")
1697
1698   (save-excursion (insert "}{}
1699
1700 \\end{frame}
1701
1702 "))
1703   )
1704
1705 (add-hook
1706  'latex-mode-hook
1707  (lambda ()
1708    (define-key latex-mode-map [(meta S)] 'ff/start-slide)
1709    (define-key latex-mode-map [(control c) (control a)] 'align-current)
1710    (define-key latex-mode-map [(control end)] 'tex-close-latex-block)
1711    (define-key latex-mode-map [(control tab)] 'ispell-complete-word)
1712    (copy-face 'default 'tex-verbatim)
1713    ;; (ff/configure-faces '((tex-verbatim :background "gray95")))
1714    ))
1715
1716 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1717
1718 (defun ff/start-test-code ()
1719   (interactive)
1720   (let ((start (point)))
1721     (insert "
1722 { // ******************************* START ***************************
1723 #warning Test code added on "
1724             (format-time-string "%04Y %b %02d %02H:%02M:%02S" (current-time))
1725             "
1726
1727 } // ******************************** END ****************************
1728
1729 ")
1730     (indent-region start (point) nil))
1731   (previous-line 3)
1732   (c-indent-command))
1733
1734 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1735
1736 (defun ff/code-to-html () (interactive)
1737   (save-restriction
1738     (narrow-to-region (region-beginning) (region-end))
1739     (replace-string "\"" "&quot;" nil (point-min) (point-max))
1740     (replace-string " " "&nbsp;" nil (point-min) (point-max))
1741     (replace-string ">" "&gt;" nil (point-min) (point-max))
1742     (replace-string "<" "&lt;" nil (point-min) (point-max))
1743     (replace-string "\e" "^[" nil (point-min) (point-max))
1744     (replace-string "\7f" "^?" nil (point-min) (point-max))
1745     (replace-string "\1f" "^_" nil (point-min) (point-max))
1746     (replace-regexp "$" "<br />" nil (point-min) (point-max))
1747     )
1748   )
1749
1750 (defun ff/downcase-html-tags () (interactive)
1751   (save-excursion
1752     (beginning-of-buffer)
1753     (while (re-search-forward "<\\([^>]+\\)>" nil t)
1754       (downcase-region (match-beginning 1) (match-end 1)))
1755     )
1756   )
1757
1758 ;; If we enter html mode and there is no makefile around, create a
1759 ;; compilation command with tidy (this is cool stuff)
1760
1761 (add-hook 'html-mode-hook
1762           (lambda ()
1763             (unless (or (not (buffer-file-name))
1764                         (file-exists-p "makefile")
1765                         (file-exists-p "Makefile"))
1766               (set (make-local-variable 'compile-command)
1767                    (let ((fn (file-name-nondirectory buffer-file-name)))
1768                      (format "tidy -utf8 %s > /tmp/%s" fn fn))))))
1769
1770 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1771
1772 (defun ff/count-words-region (beginning end)
1773   "Print number of words in the region.
1774 Words are defined as at least one word-constituent character
1775 followed by at least one character that is not a
1776 word-constituent.  The buffer's syntax table determines which
1777 characters these are."
1778
1779   (interactive "r")
1780   (message "Counting words in region ... ")
1781   (save-excursion
1782     (goto-char beginning)
1783     (let ((count 0))
1784       (while (< (point) end)
1785         (re-search-forward "\\w+\\W+")
1786         (setq count (1+ count)))
1787       (cond ((zerop count) (message "The region does NOT have any word."))
1788             ((= 1 count) (message "The region has 1 word."))
1789             (t (message "The region has %d words." count))))))
1790
1791 ;; (add-hook 'html-mode-hook 'flyspell-mode)
1792
1793 (defun ff/tidy-html ()
1794   "Run tidy in on the content of the current buffer, put the result in
1795 a file in /tmp"
1796   (interactive)
1797   (call-process-region (point-min) (point-max)
1798                        "/usr/bin/tidy"
1799                        nil
1800                        (list nil (make-temp-file "/tmp/tidy-html."))))
1801
1802 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1803
1804 ;; Create the adequate embryo of a file if it does not exist
1805
1806 (defun ff/start-file () (interactive)
1807   (let ((filename (buffer-file-name)))
1808     (when filename
1809
1810       (when (string-match "\\.sh$" filename)
1811         (sh-mode)
1812         (insert "#!/bin/bash\n\nset -e\nset -o pipefail\n\n")
1813         (save-excursion
1814           (ff/add-copyrights))
1815         )
1816
1817       (when (string-match "\\.html$" filename)
1818         (html-mode)
1819         (ff/start-html)
1820         (previous-line 4)
1821         )
1822
1823       (when (string-match "\\.h$" filename)
1824         (c++-mode)
1825         (ff/headerize)
1826         (save-excursion
1827           (ff/add-copyrights)
1828           (newline))
1829         (newline)
1830         (newline)
1831         (previous-line 1)
1832         )
1833
1834       (when (string-match "\\.c$" filename)
1835         (c-mode)
1836         (ff/add-copyrights)
1837         (ff/start-c))
1838
1839       (when (string-match "\.\\(cc\\|cpp\\)$" filename)
1840         (c++-mode)
1841         (ff/add-copyrights)
1842         (let ((headername  (replace-regexp-in-string "\\.\\(cc\\|cpp\\)$" ".h"
1843                                                      filename)))
1844           (if (file-exists-p headername)
1845               (insert (concat "\n#include \"" (file-name-nondirectory headername) "\"\n"))
1846             (ff/start-c++))
1847           ))
1848
1849       (when (string-match "\\.tex$" filename)
1850         (latex-mode)
1851         (ff/start-latex)
1852         ))
1853     )
1854   (set-buffer-modified-p nil)
1855   )
1856
1857 (if (>= emacs-major-version 22)
1858     (add-to-list 'find-file-not-found-functions 'ff/start-file)
1859   (add-to-list 'find-file-not-found-hooks 'ff/start-file))
1860
1861 (when (>= emacs-major-version 24)
1862   (define-obsolete-function-alias 'make-local-hook 'ignore "21.1")
1863   (setq send-mail-function 'sendmail-send-it) ;; emacs 24.x stuff
1864
1865   (custom-set-faces
1866    '(diff-added ((default (:background "gray90" :foreground "green4" :weight bold))))
1867    '(diff-removed ((default (:background "gray90" :foreground "red2" :weight bold))))
1868    '(diff-changed ((default (:background "gray90" :foreground "blue" :weight bold))))
1869    )
1870   )
1871
1872 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1873
1874 (define-key global-map [f8] 'ff-find-other-file)
1875 (define-key global-map [(shift f8)] (lambda () (interactive) (ff-find-other-file t)))
1876
1877 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1878 ;; Antiword, htmlize and boxquote
1879 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1880
1881 (autoload 'no-word "no-word")
1882 (add-to-list 'auto-mode-alist '("\\.doc\\'" . no-word))
1883 ;; (add-to-list 'auto-mode-alist '("\\.DOC\\'" . no-word))
1884
1885 (autoload 'htmlize-buffer "htmlize" nil t)
1886
1887 (setq boxquote-top-and-tail "------------------")
1888 (autoload 'boxquote-region "boxquote" nil t)
1889
1890 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1891 ;; The compilation hacks
1892 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1893
1894 ;; If we enter c++ mode and there is no makefile around, we create a
1895 ;; make command on the fly for the specific object file
1896
1897 (add-hook 'c++-mode-hook
1898           (lambda ()
1899             (unless (or (file-exists-p "makefile") (file-exists-p "Makefile"))
1900               (set (make-local-variable 'compile-command)
1901                    (concat
1902                     "make -k "
1903                     (file-name-sans-extension
1904                      (file-name-nondirectory buffer-file-name)))))))
1905
1906 ;; <f1> runs the compilation according to the compile-command (and
1907 ;; thus does not ask any confirmation), shows the compilation buffer
1908 ;; during compilation and delete all windows showing the compilation
1909 ;; buffer if the compilation ends with no error
1910
1911 ;; <shift-f1> asks for a compilation command and runs the compilation
1912 ;; but does not restore the window configuration (i.e. the compilation
1913 ;; buffer's window will still be visible, as usual)
1914
1915 ;; <f2> goes to the next compilation error (as C-x ` does on the
1916 ;; standard configuration)
1917
1918 (defun ff/restore-windows-if-no-error (buffer msg)
1919   "Delete the windows showing the compilation buffer if msg
1920   matches \"^finished\"."
1921
1922   (when (string-match "^finished" msg)
1923     ;;     (delete-windows-on buffer)
1924     (if (boundp 'ff/window-configuration-before-compilation)
1925         (set-window-configuration ff/window-configuration-before-compilation))
1926     )
1927   )
1928
1929 (add-to-list 'compilation-finish-functions 'ff/restore-windows-if-no-error)
1930
1931 (defun ff/fast-compile ()
1932   "Compiles without asking anything."
1933   (interactive)
1934   (let ((compilation-read-command nil))
1935     (setq ff/window-configuration-before-compilation (current-window-configuration))
1936     (compile compile-command)))
1937
1938 (setq compilation-read-command t
1939       compile-command "make -j -k"
1940       compile-history '("make clean" "make DEBUG=yes -j -k" "make -j -k")
1941       )
1942
1943 (defun ff/universal-compile () (interactive)
1944   (funcall (or (cdr (assoc major-mode
1945                            '(
1946                              (latex-mode . tex-file)
1947                              (html-mode . browse-url-of-buffer)
1948                              ;; Here you can add other mode -> compile command
1949                              )))
1950                'ff/fast-compile         ;; And this is the failsafe
1951                )))
1952
1953 (define-key global-map [f1] 'ff/universal-compile)
1954 (define-key global-map [(shift f1)] 'compile)
1955 (define-key global-map [f2] 'next-error)
1956
1957 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1958 ;; Related to mail
1959 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1960
1961 ;; (when (ff/load-or-alert "flyspell-timer" t)
1962 ;;   (add-hook 'flyspell-mode-hook 'flyspell-timer-ensure-idle-timer))
1963
1964 (defun ff/pick-dictionnary () (interactive)
1965   (when (and (boundp 'flyspell-mode) flyspell-mode)
1966     (if (and current-input-method (string-match "latin" current-input-method))
1967         (ispell-change-dictionary "francais")
1968       (ispell-change-dictionary "american"))
1969     ;;     (flyspell-buffer)
1970     )
1971   )
1972
1973 (defadvice toggle-input-method (after ff/switch-dictionnary nil activate)
1974   (ff/pick-dictionnary))
1975
1976 ;; (add-hook 'message-mode-hook 'auto-fill-mode)
1977 ;; (add-hook 'message-mode-hook 'flyspell-mode)
1978
1979 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1980 ;; Delete all windows which are in the same "column", which means
1981 ;; whose xmin and xmax are bounded by the xmin and xmax of the
1982 ;; currently selected column
1983 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1984
1985 ;; This is from emacs23 ! better than my old ff/delete-other-windows-in-column
1986
1987 (unless (fboundp 'delete-other-windows-vertically)
1988
1989   (defun delete-other-windows-vertically (&optional window)
1990     "Delete the windows in the same column with WINDOW, but not WINDOW itself.
1991 This may be a useful alternative binding for \\[delete-other-windows]
1992  if you often split windows horizontally."
1993     (interactive)
1994     (let* ((window (or window (selected-window)))
1995            (edges (window-edges window))
1996            (w window) delenda)
1997       (while (not (eq (setq w (next-window w 1)) window))
1998         (let ((e (window-edges w)))
1999           (when (and (= (car e) (car edges))
2000                      (= (caddr e) (caddr edges)))
2001             (push w delenda))))
2002       (mapc 'delete-window delenda)))
2003   )
2004
2005 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2006 ;; Misc things
2007 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2008
2009 ;; Entropy is cool
2010
2011 (defun ff/entropy (l)
2012   (apply '+
2013          (mapcar
2014           (lambda (x)
2015             (if (= x 0.0) 0.0
2016               (* (- x) (/ (log x) (log 2)))))
2017           l)
2018          )
2019   )
2020
2021 ;; Usefull to deal with results in latex files
2022
2023 (defun ff/round-floats-in-region () (interactive)
2024   (save-restriction
2025     (condition-case nil
2026         (narrow-to-region (region-beginning) (region-end))
2027       (error (thing-at-point 'word)))
2028     (save-excursion
2029       (goto-char (point-min))
2030       (while (re-search-forward "[0-9\.]+" nil t)
2031         (let ((value (string-to-number (buffer-substring (match-beginning 0) (match-end 0)))))
2032           (delete-region (match-beginning 0) (match-end 0))
2033           (insert (format "%0.2f" value)))))))
2034
2035 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2036 ;; Keymaping
2037 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2038
2039 (load "info" nil t)
2040
2041 (define-key global-map [(shift iso-lefttab)] 'ispell-complete-word)
2042 ;; shift-tab going backward is kind of standard
2043 (define-key Info-mode-map [(shift iso-lefttab)] 'Info-prev-reference)
2044
2045 ;; (define-key global-map [(control x) (control a)] 'auto-fill-mode)
2046
2047 ;; Put back my keys, you thief!
2048 (define-key global-map [(home)] 'beginning-of-buffer)
2049 (define-key global-map [(end)] 'end-of-buffer)
2050 ;; (define-key global-map [(insertchar)] 'overwrite-mode)
2051 (define-key global-map [(delete)] 'delete-char)
2052
2053 ;; Cool shortcuts to move to the end / beginning of block keen
2054 (define-key global-map [(control right)] 'forward-sexp)
2055 (define-key global-map [(control left)] 'backward-sexp)
2056
2057 ;; Wheel mouse moves up and down 2 lines (and DO NOT BEEP when we are
2058 ;; out of the buffer)
2059
2060 (define-key global-map [mouse-4]
2061   (lambda () (interactive) (condition-case nil (scroll-down 2) (error nil))))
2062 (define-key global-map [mouse-5]
2063   (lambda () (interactive) (condition-case nil (scroll-up 2) (error nil))))
2064
2065 ;; with shift it goes faster
2066 (define-key global-map [(shift mouse-4)]
2067   (lambda () (interactive) (condition-case nil (scroll-down 50) (error nil))))
2068 (define-key global-map [(shift mouse-5)]
2069   (lambda () (interactive) (condition-case nil (scroll-up 50) (error nil))))
2070
2071 ;; Meta-? shows the properties of the character at point
2072 (define-key global-map [(meta ??)]
2073   (lambda () (interactive)
2074     (message (prin1-to-string (text-properties-at (point))))))
2075
2076 ;; Compiles the latex file in the current buffer
2077
2078 (setq tex-start-commands "\\input")
2079 (define-key global-map [f3] 'tex-file)
2080 (define-key global-map [(shift f3)] 'tex-bibtex-file)
2081
2082 ;; To run xdvi on the dvi associated to the .tex in the current
2083 ;; buffer, and to edit the .fig or bitmap image used to generate the
2084 ;; .eps at point
2085
2086 (define-key global-map [f4] 'ff/run-viewer)
2087
2088 ;; Closes the current \begin{}
2089
2090 (when (ff/load-or-alert "longlines")
2091
2092   (setq longlines-show-hard-newlines t
2093         longlines-auto-wrap t
2094         ;; longlines-show-effect #("|\n" 0 2 (face escape-glyph))
2095         ;; longlines-show-effect #("∴\n" 0 2 (face escape-glyph))
2096         longlines-show-effect #("•\n" 0 2 (face escape-glyph))
2097         ;; longlines-show-effect #("↵\n" 0 2 (face escape-glyph))
2098         )
2099
2100   ;; (defun ff/auto-longlines ()
2101   ;; (when (save-excursion
2102   ;; (goto-char (point-min))
2103   ;; (re-search-forward "^.\\{81,\\}$" nil t))
2104   ;; (longlines-mode)
2105   ;; (message "Switched on the lonlines mode automatically")
2106   ;; ))
2107
2108   ;; (add-hook 'latex-mode-hook 'ff/auto-longlines)
2109
2110   )
2111
2112 ;; Meta-/ remaped (completion)
2113
2114 (define-key global-map [(shift right)] 'dabbrev-expand)
2115 (define-key global-map [(meta =)] 'dabbrev-expand)
2116
2117 ;; Change the current window.
2118
2119 (defun ff/next-same-frame-window () (interactive)
2120   (select-window (next-window (selected-window)
2121                               (> (minibuffer-depth) 0)
2122                               nil)))
2123
2124 (defun ff/previous-same-frame-window () (interactive)
2125   (select-window (previous-window (selected-window)
2126                                   (> (minibuffer-depth) 0)
2127                                   nil)))
2128
2129 (define-key global-map [(shift prior)] 'ff/next-same-frame-window)
2130 (define-key global-map [(shift next)] 'ff/previous-same-frame-window)
2131
2132 (define-key global-map [(control })] 'enlarge-window-horizontally)
2133 (define-key global-map [(control {)] 'shrink-window-horizontally)
2134 (define-key global-map [(control \")] 'enlarge-window)
2135 (define-key global-map [(control :)] 'shrink-window)
2136
2137 ;; (define-key global-map [(control shift prior)] 'next-multiframe-window)
2138 ;; (define-key global-map [(control shift next)] 'previous-multiframe-window)
2139
2140 ;; I have two screens sometime!
2141
2142 (define-key global-map [(meta next)] 'other-frame)
2143 (define-key global-map [(meta prior)] (lambda () (interactive) (other-frame -1)))
2144
2145 (define-key global-map [(shift home)] 'delete-other-windows-vertically)
2146
2147 ;; (define-key global-map [(control +)] 'enlarge-window)
2148 ;; (define-key global-map [(control -)] 'shrink-window)
2149
2150 ;; Goes to next/previous buffer
2151
2152 (define-key global-map [(control prior)] 'ff/next-buffer)
2153 (define-key global-map [(control next)] 'ff/prev-buffer)
2154
2155 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2156 ;; If M-. on a symbol, show where it is defined in another window
2157 ;; without giving focus, cycle if repeated.
2158 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2159
2160 (when (ff/load-or-alert "etags")
2161
2162   (defun ff/find-tag-nofocus () (interactive)
2163     "Show in another window the definition of the current tag"
2164     (let ((tag (find-tag-default)))
2165       (display-buffer (find-tag-noselect tag (string= tag last-tag)))
2166       (message "Tag %s" tag)
2167       )
2168     )
2169
2170   (define-key global-map [(meta .)] 'ff/find-tag-nofocus)
2171   )
2172
2173 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2174 ;; Destroys the current buffer and its window if it's not the only one
2175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2176
2177 (defcustom ff/kill-this-buffer-and-delete-window-exceptions ""
2178   "*Regexp matching the buffer names which have to be kept when using
2179 `ff/kill-this-buffer-and-delete-window'.")
2180
2181 (defun ff/kill-this-buffer-and-delete-window (universal)
2182   "Unless its name matches
2183 `ff/kill-this-buffer-and-delete-window-exceptions', kills the
2184 current buffer and deletes the current window if it's not the
2185 only one in the frame. If the buffer has to be kept, go to the
2186 next one. With universal argument, kill all killable buffers."
2187   (interactive "P")
2188   (if universal
2189       (let ((nb-killed 0))
2190         (mapc (lambda (x)
2191                 (unless (string-match ff/kill-this-buffer-and-delete-window-exceptions
2192                                       (buffer-name x))
2193                   (kill-buffer x)
2194                   (setq nb-killed (1+ nb-killed))
2195                   ))
2196               (buffer-list))
2197         (message "Killed %d buffer%s" nb-killed (if (> nb-killed 1) "s" "")))
2198     (if (string-match ff/kill-this-buffer-and-delete-window-exceptions (buffer-name))
2199         (ff/next-buffer)
2200       (kill-this-buffer)))
2201   ;; (unless (one-window-p t) (delete-window))
2202   )
2203
2204 (define-key global-map [(control backspace)] 'ff/kill-this-buffer-and-delete-window)
2205 ;; (define-key calc-mode-map [(control backspace)] 'calc-quit)
2206
2207
2208 (setq ff/kill-this-buffer-and-delete-window-exceptions
2209       "^ \\|\\*Messages\\*\\|\\*scratch\\*\\|\\*Group\\*\\|\\*-jabber-\\*\\|\\*-jabber-process-\\*\\|\\*media\\*")
2210
2211 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2212 ;; Misc stuff
2213 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2214
2215 (defun ff/elisp-debug-on ()
2216   "Switches `debug-on-error' and `debug-on-quit'."
2217   (interactive)
2218   (if debug-on-error
2219       (setq debug-on-error nil
2220             debug-on-quit nil)
2221     (setq debug-on-error t
2222           debug-on-quit t))
2223   (if debug-on-error
2224       (message "elisp debug on")
2225     (message "elisp debug off")))
2226
2227 (defun ff/create-dummy-buffer (&optional universal) (interactive "P")
2228   (find-file (concat "/tmp/" (ff/non-existing-filename "/tmp/" "dummy" "")))
2229   (text-mode)
2230   (if universal (ff/insert-url (current-kill 0)))
2231   (message "New dummy text-mode buffer"))
2232
2233 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2234 ;; Recentf to keep a list of recently visited files. I use it
2235 ;; exclusively with my selector.el
2236 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2237
2238 (load "recentf")
2239
2240 ;; If we just check for file-symlink-p, everytime we start emacs it
2241 ;; will check all the remote files listed in recentf-list, so we check
2242 ;; that they are not remote first
2243 (defun ff/file-not-remote-but-symlink (filename)
2244   (and (not (file-remote-p filename)) (file-symlink-p filename)))
2245
2246 (setq recentf-exclude (append recentf-exclude
2247                               '(
2248                                 ff/file-not-remote-but-symlink
2249                                 "enotes$" "secure-notes$" "media-playlists$"
2250                                 "bbdb$"
2251                                 "svn-commit.tmp$" ".git/COMMIT_EDITMSG$"
2252                                 "\.bbl$" "\.aux$" "\.toc$"
2253                                 ))
2254       recentf-max-saved-items 1000
2255       recentf-save-file "~/private/emacs/recentf"
2256       )
2257
2258 (when (boundp 'recentf-keep) (add-to-list 'recentf-keep 'file-remote-p))
2259
2260 (recentf-mode 1)
2261
2262 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2263 ;; My front-end to mplayer
2264 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2265
2266 ;; (ff/compile-when-needed "media/mplayer")
2267 ;; (ff/compile-when-needed "media")
2268
2269 (when (ff/load-or-alert "media")
2270
2271   (unless window-system
2272     (ff/configure-faces
2273      '(
2274        (media/mode-string-face
2275         :foreground "blue4" :weight 'bold)
2276
2277        (media/current-tune-face
2278         :foreground "black" :background "yellow" :weight 'normal)
2279
2280        (media/instant-highlight-face
2281         :foreground "black" :background "orange" :weight 'normal)
2282        ))
2283     )
2284
2285   (define-key global-map [(meta \\)] 'media)
2286
2287   (setq media/expert t
2288         media/add-current-song-to-interrupted-when-killing t
2289         media/duration-to-history 30
2290         media/history-size 1000
2291         media/playlist-file "~/private/emacs/media-playlists"
2292         media/mplayer/args '(
2293                              "-framedrop"
2294                              "-zoom"
2295                              "-cache" "512"
2296                              "-subfont-osd-scale" "3"
2297                              ;; "-stop-xscreensaver"
2298                              ;; "-osdlevel" "3"
2299                              )
2300         media/mplayer/timing-request-period 5.0
2301         )
2302   )
2303
2304 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2305 ;; A dynamic search
2306 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2307
2308 ;; selector.el is one of my own scripts, check my web page
2309
2310 (when (ff/load-or-alert "selector" t)
2311   ;; (define-key global-map [(shift return)] 'selector/quick-move-in-buffer)
2312   (define-key global-map [(control x) (control b)] 'selector/switch-buffer)
2313
2314   (defun ff/visit-debpkg-file (&optional regexp)
2315     "This function lists all the files found with dpkg -S and
2316 proposes to visit them."
2317     (interactive "sPattern: ")
2318
2319     (selector/select
2320
2321      (mapcar
2322       (lambda (s)
2323         (cons (selector/filename-to-string s) s))
2324       (split-string
2325        (shell-command-to-string (concat "dpkg -S " regexp " | awk '{print $2}'"))))
2326
2327      'selector/find-file
2328      "*selector find-file*"
2329      ))
2330   )
2331
2332 (add-hook 'selector/mode-hook (lambda () (setq truncate-lines t)))
2333
2334 (defun ff/selector-insert-record-callback (r)
2335   (bbdb-display-records (list r))
2336   ;; Weird things will happen if you kill the buffer from which you
2337   ;; invoked ff/selector-mail-from-bbdb
2338   (insert (car (elt r 6)))
2339   )
2340
2341 (defun ff/selector-compose-mail-callback (r)
2342   (vm-compose-mail (car (elt r 6)))
2343   )
2344
2345 (defun ff/selector-mail-from-bbdb () (interactive)
2346   (selector/select
2347    (mapcar
2348     (lambda (r) (cons (concat (elt r 0)
2349                               " "
2350                               (elt r 1)
2351                               " ("
2352                               (car (elt r 6))
2353                               ")")
2354                       r))
2355     (bbdb-records))
2356    (if (string= mode-name "Mail")
2357        'ff/selector-insert-record-callback
2358      'ff/selector-compose-mail-callback)
2359    "*bbdb-search*"
2360    )
2361   )
2362
2363 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2364 ;; My script to automatically count the number of words and characters
2365 ;; between two markers
2366
2367 (ff/load-or-alert "text-counters.el")
2368
2369 ;; Display them in the modeline when in text-mode
2370
2371 (add-hook 'text-mode-hook 'tc/add-text-counters-in-modeline)
2372
2373 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2374 ;; A function to remove temporary alarm windows
2375 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2376
2377 (defcustom ff/annoying-windows-regexp
2378   "\\*Messages\\*\\|\\*compilation\\*\\|\\*tex-shell\\*\\|\\*Help\\*\\|\\*info\\*\\|\\*Apropos\\*\\|\\*BBDB\\*\\|\\*.*-diff\\*"
2379   "The regexp matching the windows to be deleted by `ff/delete-annoying-windows'"
2380   )
2381
2382 (defun ff/delete-annoying-windows ()
2383   "Close all the windows showing buffers whose names match
2384 `ff/annoying-windows-regexp'."
2385   (interactive)
2386   (when ff/annoying-windows-regexp
2387     (mapc (lambda (w)
2388             (when (and (not (one-window-p w))
2389                        (string-match ff/annoying-windows-regexp
2390                                      (buffer-name (window-buffer w))))
2391               (delete-window w)))
2392           (window-list)
2393           )
2394     (message "Removed annoying windows")
2395     )
2396   )
2397
2398 (setq ff/annoying-windows-regexp
2399       (concat ff/annoying-windows-regexp
2400               "\\|\\*unspooled mails\\*\\|\\*enotes alarms\\*\\|\\*system info\\*"))
2401
2402 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2403 ;; Some handy functions
2404 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2405
2406 (defun ff/twin-horizontal-current-buffer () (interactive)
2407   (delete-other-windows)
2408   (split-window-horizontally)
2409   (balance-windows)
2410   )
2411
2412 (defun ff/twin-vertical-current-buffer () (interactive)
2413   (delete-other-windows)
2414   (split-window-vertically)
2415   (balance-windows)
2416   )
2417
2418 (defun ff/flyspell-mode (arg) (interactive "p")
2419   (if flyspell-mode (flyspell-mode -1)
2420     (flyspell-mode 1)
2421     (flyspell-buffer))
2422 )
2423
2424 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2425 ;; The fridge!
2426 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2427
2428 (defun ff/move-region-to-fridge () (interactive)
2429   "Cut the current region, paste it in a file called ./fridge
2430 with a time tag, and save this file"
2431   (unless (use-region-p) (error "No region selected"))
2432   (let ((bn (file-name-nondirectory (buffer-file-name))))
2433     (kill-region (region-beginning) (region-end))
2434     (with-current-buffer (find-file-noselect "fridge")
2435       (goto-char (point-max))
2436       (insert "\n")
2437       (insert "######################################################################\n")
2438       (insert "\n"
2439               (format-time-string "%Y %b %d %H:%M:%S" (current-time))
2440               " (from "
2441               bn
2442               ")\n\n")
2443       (yank)
2444       (save-buffer)
2445       (message "Region moved to fridge")
2446       )
2447     )
2448   )
2449
2450 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2451 ;; Let's be zen. Remove the modeline and fringes.
2452 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2453
2454 (setq ff/zen-original-setting nil)
2455
2456 (defun ff/zen () (interactive)
2457   (if ff/zen-original-setting
2458       (setq mode-line-format (car ff/zen-original-setting)
2459             fringe-mode (cdr ff/zen-original-setting)
2460             ff/zen-original-setting nil)
2461     (setq ff/zen-original-setting (cons mode-line-format fringe-mode)
2462           mode-line-format nil
2463           fringe-mode '(0 . 0))
2464     (delete-other-windows)
2465     )
2466   (fringe-mode fringe-mode)
2467   (if ff/zen-original-setting
2468       (message "Zen mode")
2469     (message "Cluttered mode"))
2470   )
2471
2472 ;; (define-key global-map [(control x) (x)] 'ff/zen)
2473
2474 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2475 ;; My own keymap
2476 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2477
2478 (setq ff/map (make-sparse-keymap))
2479 (define-key global-map [(control \`)] ff/map)
2480 ;;(define-key global-map [(control @)] ff/map)
2481
2482 (define-key esc-map "`" ff/map)
2483
2484 (defun ff/git-status (&optional dir) (interactive)
2485   (if (buffer-file-name)
2486       (git-status (file-name-directory (buffer-file-name)))
2487     (error "No file attached to this buffer")))
2488
2489 (defun ff/insert-date () (interactive)
2490   (insert (format-time-string "\n * %Y %b %d %H:%M:%S\n\n" (current-time)))
2491   )
2492
2493 (define-key ff/map [(control g)] 'ff/git-status)
2494 (define-key ff/map [(control w)] 'server-edit)
2495 (define-key ff/map [(control d)] 'ff/elisp-debug-on)
2496 ;; (define-key ff/map "d" 'diary)
2497 (define-key ff/map "d" 'ff/insert-date)
2498 (define-key ff/map [(control \`)] 'ff/bash-new-buffer)
2499 (define-key ff/map [(control n)] 'enotes/show-all-notes)
2500 (define-key ff/map [(control s)] 'ff/secure-note-add)
2501 (define-key ff/map [(control t)] 'ff/start-test-code)
2502 (define-key ff/map [(control q)] 'ff/create-dummy-buffer)
2503 (define-key ff/map [(control a)] 'auto-fill-mode)
2504 (define-key ff/map [(control i)] 'ff/system-info)
2505 (define-key ff/map "w" 'ff/word-occurences)
2506 (define-key ff/map [(control c)] 'calendar)
2507 ;; (define-key ff/map [(control c)] (lambda () (interactive) (save-excursion (calendar))))
2508 (define-key ff/map [(control l)] 'goto-line)
2509 (define-key ff/map "l" 'longlines-mode)
2510 (define-key ff/map [(control o)] 'selector/quick-pick-recent)
2511 (define-key ff/map "s" 'selector/quick-move-in-buffer)
2512 (define-key ff/map "S" 'selector/search-sentence)
2513 (define-key ff/map "t" (lambda () (interactive) (find-file "~/private/TODO.txt")))
2514 (define-key ff/map "h" 'ff/tidy-html)
2515 (define-key ff/map "c" 'ff/count-char)
2516 (define-key ff/map [(control p)] 'ff/print-to-file)
2517 (define-key ff/map "P" 'ff/print-to-printer)
2518 (define-key ff/map [(control b)] 'bbdb)
2519 (define-key ff/map "m" 'ff/selector-mail-from-bbdb)
2520 (define-key ff/map [(control m)] 'woman)
2521 (define-key ff/map "b" 'bookmark-jump)
2522 (define-key ff/map [(control =)] 'calc)
2523 (define-key ff/map [(control shift b)]
2524   (lambda () (interactive)
2525     (bookmark-set)
2526     (bookmark-save)))
2527 (define-key ff/map "f" 'ff/move-region-to-fridge)
2528 (define-key ff/map [(control f)] 'ff/flyspell-mode)
2529
2530 (define-key ff/map [?\C-0] 'ff/delete-annoying-windows)
2531 (define-key ff/map "1" 'delete-other-windows)
2532 (define-key ff/map [?\C-1] 'delete-other-windows)
2533 (define-key ff/map "2" 'ff/twin-vertical-current-buffer)
2534 (define-key ff/map [?\C-2] 'ff/twin-vertical-current-buffer)
2535 (define-key ff/map "3" 'ff/twin-horizontal-current-buffer)
2536 (define-key ff/map [?\C-3] 'ff/twin-horizontal-current-buffer)
2537
2538 (define-key ff/map " " 'delete-trailing-whitespace)
2539 (define-key ff/map [(control x)] 'ff/zen)
2540
2541 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2542 ;; Hacks so that all keys are functionnal in xterm and through ssh.
2543 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2544
2545 (unless window-system
2546
2547   ;; One day I will understand these clipboard business. Until then,
2548   ;; so that it works in xterm (yes), let's use xclip. This is a bit
2549   ;; ugly.
2550
2551   ;; (defun ff/yank-with-xclip (&optional arg)
2552   ;; "Paste the content of the X clipboard with the xclip
2553   ;; command. Without ARG converts some of the '\\uxxxx' characters."
2554   ;; (interactive "P")
2555   ;; (with-temp-buffer
2556   ;; (shell-command "xclip -o" t)
2557   ;; (unless arg
2558   ;; (mapc (lambda (x) (replace-string (concat "\\u" (car x)) (cdr x) nil (point-min) (point-max)))
2559   ;; '(("fffd" . "??")
2560   ;; ("2013" . "-")
2561   ;; ("2014" . "--")
2562   ;; ("2018" . "`")
2563   ;; ("2019" . "'")
2564   ;; ("201c" . "``")
2565   ;; ("201d" . "''")
2566   ;; ("2022" . "*")
2567   ;; ("2026" . "...")
2568   ;; ("20ac" . "EUR")
2569   ;; )))
2570   ;; (kill-ring-save (point-min) (point-max)))
2571
2572   ;; (yank))
2573
2574   ;; (define-key global-map [(meta y)] 'ff/yank-with-xclip)
2575
2576   ;;   (set-terminal-coding-system 'iso-latin-1)
2577   ;; (set-terminal-coding-system 'utf-8)
2578
2579   ;; I have in my .Xressource
2580
2581   ;; XTerm.VT100.translations: #override\n\
2582   ;;   <Btn4Down>,<Btn4Up>:scroll-back(2,line)\n\
2583   ;;   <Btn5Down>,<Btn5Up>:scroll-forw(2,line)\n\
2584   ;;   Ctrl<Btn4Down>,Ctrl<Btn4Up>:scroll-back(1,page)\n\
2585   ;;   Ctrl<Btn5Down>,Ctrl<Btn5Up>:scroll-forw(1,page)\n\
2586   ;;   Shift<Btn4Down>,Shift<Btn4Up>:scroll-back(1,halfpage)\n\
2587   ;;   Shift<Btn5Down>,Shift<Btn5Up>:scroll-forw(1,halfpage)\n\
2588   ;;   Alt<KeyPress>:insert-eight-bit()\n\
2589   ;;   !Shift<Key>BackSpace: string("\7f")\n\
2590   ;;   Ctrl<Key>BackSpace: string("\eOZ")\n\
2591   ;;   Shift<Key>Prior: string("\e[5;2~")\n\
2592   ;;   Shift<Key>Next: string("\e[6;2~")\n\
2593   ;;   Shift Ctrl<Key>]: string("\eO}")\n\
2594   ;;   Shift Ctrl<Key>[: string("\eO{")\n\
2595   ;;   Shift Ctrl<Key>/: string("\eO?")\n\
2596   ;;   Ctrl<Key>/: string("\eO/")\n\
2597   ;;   Shift Ctrl<Key>=: string("\eO+")\n\
2598   ;;   Ctrl<Key>=: string("\eO=")\n\
2599   ;;   Shift Ctrl<Key>;: string("\eO:")\n\
2600   ;;   Ctrl<Key>;: string("\eO;")\n\
2601   ;;   Shift Ctrl<Key>`: string("\eO~")\n\
2602   ;;   Ctrl<Key>`: string("\eO`")\n\
2603   ;;   Shift Ctrl<Key>': string("\eO\\\"")\n\
2604   ;;   Ctrl<Key>': string("\eO'")\n\
2605   ;;   Shift Ctrl<Key>.: string("\eO>")\n\
2606   ;;   Ctrl<Key>.: string("\eO.")\n\
2607   ;;   Shift Ctrl<Key>\\,: string("\eO<")\n\
2608   ;;   Ctrl<Key>\\,: string("\eO,")
2609
2610   (define-key function-key-map "\e[2~" [insert])
2611
2612   (define-key function-key-map "\e[Z" [S-iso-lefttab])
2613
2614   (define-key function-key-map "\e[1;2A" [S-up])
2615   (define-key function-key-map "\e[1;2B" [S-down])
2616   (define-key function-key-map "\e[1;2C" [S-right])
2617   (define-key function-key-map "\e[1;2D" [S-left])
2618   (define-key function-key-map "\e[1;2F" [S-end])
2619   (define-key function-key-map "\e[1;2H" [S-home])
2620
2621   (define-key function-key-map "\e[2;2~" [S-insert])
2622   (define-key function-key-map "\e[5;2~" [S-prior])
2623   (define-key function-key-map "\e[6;2~" [S-next])
2624
2625   (define-key function-key-map "\e[1;2P" [S-f1])
2626   (define-key function-key-map "\e[1;2Q" [S-f2])
2627   (define-key function-key-map "\e[1;2R" [S-f3])
2628   (define-key function-key-map "\e[1;2S" [S-f4])
2629   (define-key function-key-map "\e[15;2~" [S-f5])
2630   (define-key function-key-map "\e[17;2~" [S-f6])
2631   (define-key function-key-map "\e[18;2~" [S-f7])
2632   (define-key function-key-map "\e[19;2~" [S-f8])
2633   (define-key function-key-map "\e[20;2~" [S-f9])
2634   (define-key function-key-map "\e[21;2~" [S-f10])
2635
2636   (define-key function-key-map "\e[1;5A" [C-up])
2637   (define-key function-key-map "\e[1;5B" [C-down])
2638   (define-key function-key-map "\e[1;5C" [C-right])
2639   (define-key function-key-map "\e[1;5D" [C-left])
2640   (define-key function-key-map "\e[1;5F" [C-end])
2641   (define-key function-key-map "\e[1;5H" [C-home])
2642
2643   (define-key function-key-map "\e[2;5~" [C-insert])
2644   (define-key function-key-map "\e[5;5~" [C-prior])
2645   (define-key function-key-map "\e[6;5~" [C-next])
2646
2647   (define-key function-key-map "\e[1;9A" [M-up])
2648   (define-key function-key-map "\e[1;9B" [M-down])
2649   (define-key function-key-map "\e[1;9C" [M-right])
2650   (define-key function-key-map "\e[1;9D" [M-left])
2651   (define-key function-key-map "\e[1;9F" [M-end])
2652   (define-key function-key-map "\e[1;9H" [M-home])
2653
2654   (define-key function-key-map "\e[2;9~" [M-insert])
2655   (define-key function-key-map "\e[5;9~" [M-prior])
2656   (define-key function-key-map "\e[6;9~" [M-next])
2657
2658   ;; The following ones are not standard
2659
2660   (define-key function-key-map "\eO}" (kbd "C-}"))
2661   (define-key function-key-map "\eO{" (kbd "C-{"))
2662   (define-key function-key-map "\eO?" (kbd "C-?"))
2663   (define-key function-key-map "\eO/" (kbd "C-/"))
2664   (define-key function-key-map "\eO:" (kbd "C-:"))
2665   (define-key function-key-map "\eO;" (kbd "C-;"))
2666   (define-key function-key-map "\eO~" (kbd "C-~"))
2667   (define-key function-key-map "\eO`" (kbd "C-\`"))
2668   (define-key function-key-map "\eO\"" (kbd "C-\""))
2669   (define-key function-key-map "\eO|" (kbd "C-|"))
2670   (define-key function-key-map "\eO'" (kbd "C-'"))
2671   (define-key function-key-map "\eO>" (kbd "C->"))
2672   (define-key function-key-map "\eO." (kbd "C-."))
2673   (define-key function-key-map "\eO<" (kbd "C-<"))
2674   (define-key function-key-map "\eO," (kbd "C-,"))
2675   (define-key function-key-map "\eO-" (kbd "C--"))
2676   (define-key function-key-map "\eO=" (kbd "C-="))
2677   (define-key function-key-map "\eO+" (kbd "C-+"))
2678
2679   (define-key function-key-map "\eOZ" [C-backspace])
2680
2681   (define-key minibuffer-local-map "\10" 'previous-history-element)
2682   (define-key minibuffer-local-map "\ e" 'next-history-element)
2683
2684   ;; (define-key global-map [(alt prior)] 'ff/prev-buffer)
2685   ;; (define-key global-map [(alt next)] 'ff/next-buffer)
2686
2687   )
2688
2689 ;; I am fed up with Alt-Backspace in the minibuffer erasing the
2690 ;; content of the kill-ring
2691
2692 (defun ff/backward-delete-word (arg)
2693   "Delete characters forward until encountering the end of a word, but do not put them in the kill ring.
2694 With argument ARG, do this that many times."
2695   (interactive "p")
2696   (delete-region (point) (progn (forward-word (- arg)) (point))))
2697
2698 (define-key minibuffer-local-map
2699   [remap backward-kill-word] 'ff/backward-delete-word)
2700
2701 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2702 ;; Privacy
2703 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2704
2705 ;; Where to save the bookmarks and where is bbdb
2706
2707 (setq bookmark-default-file "~/private/emacs/bmk"
2708       bbdb-file "~/private/bbdb"
2709       custom-file "~/private/emacs/custom")
2710
2711 ;; enotes.el is one of my own scripts, check my web page
2712
2713 (when (ff/load-or-alert "enotes" t)
2714   (setq enotes/file "~/private/enotes"
2715         enotes/show-help nil
2716         enotes/full-display nil
2717         enotes/default-time-fields "9:30")
2718
2719   (enotes/init)
2720   ;; (add-hook 'enotes/alarm-hook
2721   ;;  (lambda () (ff/play-sound-async "~/local/sounds/three_notes2.wav")))
2722   )
2723
2724 ;; (when (ff/load-or-alert "goto-last-change.el")
2725 ;; (define-key global-map [(control x) (control a)] 'goto-last-change))
2726
2727 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2728 ;; My private stuff (email adresses, mail filters, etc.)
2729 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2730
2731 (ff/load-or-alert "~/private/emacs.perso.el" t)
2732
2733 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2734 ;; emacs server
2735 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2736
2737 ;; Runs in server mode, so that emacsclient works
2738 (server-start)
2739
2740 (defun ff/raise-frame-and-give-focus ()
2741   (when window-system
2742     (raise-frame)
2743     (x-focus-frame (selected-frame))
2744     (set-mouse-pixel-position (selected-frame) 4 4)
2745     ))
2746
2747 ;; Raises the window when the server is invoked
2748
2749 (add-hook 'server-switch-hook 'ff/raise-frame-and-give-focus)