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