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