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