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