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