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