1 ;; -*- mode: Emacs-Lisp; mode: rainbow; -*-
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. ;;
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. ;;
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/>. ;;
17 ;; Written by and Copyright (C) Francois Fleuret ;;
18 ;; Contact <francois@fleuret.org> for comments & bug reports ;;
19 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21 ;; It's better to set the preferences in the .Xresources so that the
22 ;; window is not first displayed with the wrong options
25 ;; Emacs.verticalScrollBars: off
27 ;; Emacs.internalBorder: 1
28 ;; Emacs.FontBackend: xft
31 ;; Xft.antialias: true
34 (set-default-font "Inconsolata 15")
36 ;; (set-default-font "Bitstream vera sans mono-12")
37 ;; (set-default-font "Liberation Mono-13")
38 ;; (set-default-font "DejaVu sans mono 15")
39 ;; (set-default-font "Droid sans mono 13")
40 ;; (set-default-font "Opensans 10")
42 (when (fboundp 'horizontal-scroll-bar-mode)
43 (horizontal-scroll-bar-mode -1))
45 ;; This is where I put most of my emacs-related files
46 (setq ff/emacs-dir "~/private/emacs")
47 (unless (file-exists-p ff/emacs-dir)
48 (mkdir ff/emacs-dir t))
50 ;; Give the focus to the emacs window if we are under a windowing
54 ;; (x-focus-frame nil)
55 (set-mouse-pixel-position (selected-frame) 4 4))
57 ;; Where I keep my own scripts
59 (add-to-list 'load-path "~/sources/gpl/elisp")
60 (add-to-list 'load-path "~/sources/elisp")
61 (add-to-list 'load-path "~/local/elisp")
63 ;; No, I do not like menus
67 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 0)))
68 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 1)))
69 (when (functionp 'fringe-mode) (fringe-mode 10))
71 ;; And I do not like scrollbar neither
72 (when (functionp 'scroll-bar-mode) (scroll-bar-mode -1))
74 ;; Make all "yes or no" prompts be "y or n" instead
75 (fset 'yes-or-no-p 'y-or-n-p)
77 ;; The space bar acting as "yes" has been several times really
79 (define-key query-replace-map (kbd "SPC") nil)
81 ;; Show the matching parenthesis and do it immediately, we are in a
83 (setq show-paren-delay 0)
86 ;; use colorization for all modes
87 (global-font-lock-mode t)
89 (setq font-lock-maximum-decoration 3
90 ;;'((latex-mode . 2) (t . 2))
93 ;; Activate the dynamic completion of buffer names
97 ;; Save the minibuffer history
98 (setq savehist-file (concat ff/emacs-dir "/savehist"))
99 (when (functionp 'savehist-mode) (savehist-mode 1))
101 ;; And allow minibuffer recursion
102 (setq enable-recursive-minibuffers t)
103 (minibuffer-depth-indicate-mode 1)
105 ;; I do not like tooltips
106 (when (functionp 'tooltip-mode) (tooltip-mode nil))
108 ;; Activate the dynamic completion in the mini-buffer
111 ;; (setq highlight-current-line-globally t
112 ;; highlight-current-line-ignore-regexp "Faces\\|Colors\\| \\*Mini\\|\\*media\\|INBOX")
114 ;; (highlight-current-line-minor-mode 1)
115 ;; (highlight-current-line-set-bg-color "gray75")
117 (defun ff/compile-when-needed (name)
118 "Compiles the given file only if needed. Adds .el if required, and
119 uses `load-path' to find it."
120 (if (not (string-match "\.el$" name))
121 (ff/compile-when-needed (concat name ".el"))
123 (let* ((src (concat dir "/" name)))
124 (when (file-newer-than-file-p src (concat src "c"))
125 (if (let ((byte-compile-verbose nil))
127 (byte-compile-file src)
129 (message (format "Compiled %s" src ))
130 (message (format "Failed compilation of %s" src))))))
133 ;; This is useful when using the same .emacs in many places
135 (defun ff/load-or-alert (name &optional compile-when-needed)
136 "Tries to load the specified file and insert a warning message in a
137 load-warning buffer in case of failure."
139 (when compile-when-needed (ff/compile-when-needed name))
141 (if (load name t nil) t
142 (let ((buf (get-buffer-create "*loading warnings*")))
145 (insert (propertize "Warning:" 'face 'font-lock-warning-face) " could not load '" name "'\n")
146 (fit-window-to-buffer (get-buffer-window buf))
147 (set-buffer-modified-p nil))
150 ;; This is the default in emacs 22.1 and later
151 ;; (auto-compression-mode 1)
153 ;; make emacs use the clipboard so that copy/paste works for other
154 ;; x-programs. I have no clue how all that clipboard thing works.
156 ;; (setq x-select-enable-clipboard t)
157 ;; (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
158 ;; (setq x-select-enable-primary t)
159 ;; (setq x-select-enable-clipboard t)
160 ;; (global-set-key "\C-y" 'clipboard-yank)
166 ;; avoid GC as much as possible
167 gc-cons-threshold 2500000
169 ;; no startup message
170 inhibit-startup-screen t
172 ;; no message in the scratch buffer
173 initial-scratch-message nil
175 ;; do not fill my buffers, you fool
176 next-line-add-newlines nil
178 ;; keep the window focused on the messages during compilation
179 compilation-scroll-output t
181 ;; Keep the highlight on the compilation error
182 next-error-highlight t
184 ;; blink the screen instead of beeping
187 ;; take the CR when killing a line
190 ;; I prefer to move between lines as defined in the buffer, not
194 ;; I comment empty lines, too (does not seem to work, though)
195 comment-empty-lines t
197 ;; We want long lines to be truncated instead of displayed on several lines
199 ;; Show all lines, even if the window is not as large as the frame
200 ;; truncate-partial-width-windows nil
201 ;; truncate-partial-width-windows t
203 ;; Do not keep tracks of the autosaved files
204 auto-save-list-file-prefix nil
206 ;; Show me empty lines at the end of the buffer
207 default-indicate-empty-lines t
209 ;; Show me the region until I do something on it
210 transient-mark-mode t
212 ;; Do not color stuff which are clickable when hovering over it
215 ;; Don't bother me with questions even if "unsafe" local variables
217 enable-local-variables :all
219 ;; I have no problem with small windows
222 ;; I am not a fan of develock
223 develock-auto-enable nil
225 ;; I do not like women to open windows
226 woman-use-own-frame nil
228 ;; I am not that paranoid, contrary to what you think
229 epa-file-cache-passphrase-for-symmetric-encryption t
230 ;; And I like ascii files
233 ;; tramp-default-method "ssh"
234 tramp-default-method "scp"
236 ;; I have no problem with files having their own local variables
239 mail-from-style 'angles
240 browse-url-mozilla-program "firefox"
242 mc-use-default-recipients t
244 ;; browse-url-new-window-flag t
246 ;; I do not like compilation to automatically split the active window
247 ;; vertically, even when the said window is very wide
248 split-height-threshold 0
249 split-width-threshold nil
256 temporary-file-directory "/tmp/"
257 vc-make-backup-files t
258 backup-directory-alist '((".*" . "~/misc/emacs.backups/"))
259 version-control t ;; Use backup files with numbers
262 delete-old-versions t
263 backup-by-copying-when-linked t
266 (setq tramp-backup-directory-alist backup-directory-alist)
268 (setq user-emacs-directory "~/misc/emacs.d/")
271 abbrev-file-name (concat user-emacs-directory "abbrev_defs")
272 server-auth-dir (concat user-emacs-directory "server/")
273 custom-theme-directory user-emacs-directory
276 ;; Stop this crazy blinking cursor
277 (blink-cursor-mode 0)
279 ;; (setq blink-cursor-delay 0.05
280 ;; blink-cursor-blinks 0
281 ;; blink-cursor-interval 0.25)
283 ;; (set-terminal-coding-system 'utf-8)
285 ;; (unless window-system
286 ;; (xterm-mouse-mode 1)
287 ;; (if (string= (getenv "TERM") "xterm-256color")
288 ;; (ff/load-or-alert "xterm-256color" t))
293 ;; Show white spaces at the end of lines
294 show-trailing-whitespace t
296 ;; Do not show the cursor in non-active window
297 cursor-in-non-selected-windows nil
302 ;; when on a TAB, the cursor has the TAB length
305 ;; This is the default coding system when toggle-input-method is
307 default-input-method "latin-1-prefix"
309 ;; do not put tabs when indenting
311 ;; Stop indenting automatically, that's annoying
312 electric-indent-chars nil
314 ;; And yes, we have a fast display / connection / whatever
318 ;; To keep the cursor always visible when it moves (thanks
320 redisplay-dont-pause t
322 ;; I want to see the keys I type instantaneously
326 ;; Show the column number
327 (column-number-mode 1)
329 ;; What modes for what file extentions
330 (add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode))
332 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
336 (add-to-list 'auto-mode-alist '("\\.txt\\'" . (lambda()
342 (add-hook 'c++-mode-hook 'flyspell-prog-mode)
343 (add-hook 'log-edit-mode-hook 'flyspell-mode)
347 (put 'narrow-to-region 'disabled nil)
348 (put 'upcase-region 'disabled nil)
349 (put 'downcase-region 'disabled nil)
350 ;; (put 'scroll-left 'disabled nil)
351 ;; (put 'scroll-right 'disabled nil)
353 ;; My selector is clearer than that
354 ;; (when (load "ido" t) (ido-mode t))
356 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
358 ;; Makes buffer names more explicit then <2>, <3> etc. when there are
359 ;; several identical filenames
361 (when (load "uniquify" t)
362 (setq uniquify-buffer-name-style 'post-forward-angle-brackets))
364 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
366 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
368 (when (boundp 'x-display-name)
372 ;; If the display is :0.0, we make the assumption that we are
373 ;; running the emacs locally, and we do not show the
374 ;; hostname. Otherwise, show @host.
376 frame-title-format (concat "emacs" ;;invocation-name
377 (unless (string= x-display-name ":0.0")
378 (concat "@" system-name))
381 ;; Use the same for the icone
383 icon-title-format frame-title-format
386 ;; "tool" bar? Are you kidding?
387 (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
389 ;; ;; If my own letter icon is here, use it and change its color
390 ;; (when (file-exists-p "~/local/share/emacs/letter.xbm")
391 ;; (setq-default display-time-mail-icon
394 ;; :file "~/local/share/emacs/letter.xbm"
395 ;; :ascent center)))))
397 ;; My funky setting of face colors. Basically, we switch to a sober
398 ;; look and darken a bit the colors which need to (because of the
399 ;; darker background)
401 (defun ff/configure-faces (fl)
402 "Set face attributes and create faces when necessary"
404 (unless (boundp (car f)) (make-empty-face (car f)))
405 (eval `(set-face-attribute (car f) nil ,@(cdr f))))
408 ;; Not the same in xterm (which is gray in my case) and in
413 ;; display-time-use-mail-icon t)
417 ;; (escape-glyph :foreground "#c0c0c0" :weight 'bold)
418 (escape-glyph :foreground "green3" :weight 'bold)
419 (default :background "gray90" :foreground "black")
420 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
421 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
422 (message-cited-text :foreground "red4")
423 (diff-mode :background "gray90" :weight 'bold)
424 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
425 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
426 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
427 (diff-file-header :background "white" :foreground "black"
429 (diff-header :background "white" :foreground "black")
430 (diff-hunk-header :background "white" :foreground "black")
431 (font-lock-builtin-face :foreground "deeppink3")
432 (font-lock-string-face :foreground "dark olive green")
433 (font-lock-variable-name-face :foreground "sienna")
434 ;; (font-lock-function-name-face :foreground "blue" :weight 'bold)
435 (font-lock-function-name-face :foreground "blue")
436 ;; (font-lock-comment-delimiter-face :foreground "dark violet")
437 ;; (font-lock-comment-face :foreground "dark violet")
438 (flyspell-incorrect :background "#ff0000" :foreground "black")
439 (flyspell-duplicate :background "#ff9000" :foreground "black")
440 (hl-line :background "white")
441 (sh-heredoc :foreground "black" :background "#fff0f0")
442 (sh-heredoc-face :foreground "black" :background "#fff0f0")
443 (header-line :background "gray65")
444 (highlight :background "turquoise")
445 (message-cited-text-face :foreground "firebrick")
446 (isearch :background "yellow" :foreground "black")
447 (isearch-lazy-highlight-face' :background "yellow3" :foreground "black")
448 (region :background "#b8b8e0" :foreground "black")
449 ;; (region :background "plum" :foreground "black")
450 (show-paren-match-face :background "gold" :foreground "black")
451 (show-paren-mismatch-face :background "red" :foreground "black")
452 (trailing-whitespace :background "gray65")
453 (cursor :inverse-video t)
454 (enotes/list-title-face :foreground "blue" :weight 'bold)
455 (mode-line :background "#b0b0ff" :foreground "black" :box nil
457 (header-line :background "cornflowerblue" :foreground "black" :box nil
459 (mode-line-inactive :background "gray80" :foreground "black" :box nil
461 ;; (fringe :background "black" :foreground "gray90")
462 (fringe :background "gray80")
463 (ff/date-info-face :foreground "white")
464 (ff/battery-info-face :foreground "white")
465 (ff/mail-alarm-face :foreground "white" :background "red2")
466 ;; (alarm-vc-face :foreground "black" :background "yellow" :weight 'normal)
467 (gui-button-face :background "green" :foreground "black")
471 (unless window-system
472 ;; (xterm-mouse-mode 1)
474 '((italic :underline nil)
475 (info-title-2 :foreground "green")
476 (font-lock-comment-delimiter-face :foreground "green")
477 (font-lock-comment-face :foreground "green")
478 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
479 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
480 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
481 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
482 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
483 (diff-file-header-face :background "white" :foreground "black"
485 (diff-header-face :background "white" :foreground "black")
486 (diff-hunk-header-face :background "white" :foreground "black")
487 (diff-indicator-removed :foreground "red" :weight 'bold)
488 (diff-removed :foreground "red" :weight 'bold)
489 (diff-indicator-added :foreground "blue" :weight 'bold)
490 (diff-added :foreground "blue" :weight 'bold)
491 (font-lock-string-face :foreground "green")
492 (font-lock-variable-name-face :foreground "blue")
493 (font-lock-constant-face :foreground "blue")
494 (font-lock-preprocessor-face :foreground "green")
495 (font-lock-function-name-face :foreground "cyan")
496 (flyspell-incorrect :foreground "red2")
497 (flyspell-duplicate :foreground "OrangeRed2")
498 (hl-line :background "white")
499 (sh-heredoc :foreground "black" :background "#fff0f0")
500 (sh-heredoc-face :foreground "black" :background "#fff0f0")
501 (font-lock-keyword-face :foreground "blue")
502 (highlight :background "darkseagreen3")
503 (isearch :background "orange" :foreground "black")
504 (isearch-lazy-highlight-face' :background "yellow" :foreground "black")
505 ;; (display-time-mail-face :background "white")
506 (show-paren-match-face :background "gold" :foreground "black")
507 (show-paren-mismatch-face :background "red" :foreground "black")
508 (trailing-whitespace :background "white")
509 (mode-line :background "cornflowerblue" :foreground "black" :box nil
511 (header-line :background "cornflowerblue" :foreground "black" :box nil
513 (mode-line-inactive :background "gray60" :foreground "black" :box nil
515 (region :background "white" :foreground "black")
516 (ff/date-info-face :foreground "white" :weight 'bold)
517 (ff/battery-info-face :foreground "white")
518 (ff/mail-alarm-face :foreground "red" :weight 'bold)
519 (selector/selection :background "yellow")
520 (gui-button-face :background "green" :foreground "white")
521 (enotes/information-face :foreground "cyan")
523 (file-name-shadow :foreground "black")
524 (shadow :foreground "black")
525 (warning :foreground "black" :background "red")
529 ;; When we are root, put the modeline in red
531 (when (string= (user-real-login-name) "root")
533 '((mode-line :background "red3" :foreground "black" :box nil
537 ;; Why should I have to do this?
538 (add-hook 'sh-mode-hook
540 (set-face-attribute 'sh-heredoc nil
541 :foreground "#604000"
544 (set-face-attribute 'sh-heredoc-face nil
545 :foreground "#604000"
550 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
551 ;; Move the window on the buffer without moving the cursor
552 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
554 (defun ff/scroll-down ()
555 "Scroll the buffer down one line and keep the cursor at the same location."
561 (defun ff/scroll-up ()
562 "Scroll the buffer up one line and keep the cursor at the same location."
568 (defun ff/scroll-left ()
569 "Scroll the buffer left one column and keep the cursor at the same location."
575 (defun ff/scroll-right ()
576 "Scroll the buffer right one column and keep the cursor at the same location."
582 (define-key global-map [(meta up)] 'ff/scroll-down)
583 (define-key global-map [(meta down)] 'ff/scroll-up)
585 (define-key global-map [(meta shift up)]
586 (lambda () (interactive) (condition-case nil (scroll-down 10) (error nil))))
588 (define-key global-map [(meta shift down)]
589 (lambda () (interactive) (condition-case nil (scroll-up 10) (error nil))))
591 ;; (define-key global-map [(meta shift up)] (lambda () (interactive) (ff/scroll-down 10)))
592 ;; (define-key global-map [(meta shift down)] 'ff/scroll-up)
594 (define-key global-map [(meta p)] 'ff/scroll-down)
595 (define-key global-map [(meta n)] 'ff/scroll-up)
596 (define-key global-map [(meta right)] 'ff/scroll-left)
597 (define-key global-map [(meta left)] 'ff/scroll-right)
599 (defun ff/delete-trailing-whitespaces-and-indent ()
601 (delete-trailing-whitespace)
602 (indent-region (point-min) (point-max) nil))
604 (define-key global-map [(control c) (control q)] 'ff/delete-trailing-whitespaces-and-indent)
606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
608 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
610 ;; (defun ff/esd-sound (file)
611 ;; "Plays a sound with the Enlighted sound daemon."
613 ;; (process-kill-without-query (start-process-shell-command "esdplay"
617 (defun ff/alsa-sound (file)
618 "Plays a sound with ALSA."
620 (process-kill-without-query (start-process-shell-command "aplay"
624 (if (and (boundp 'x-display-name) (string= x-display-name ":0.0"))
625 (defalias 'ff/play-sound-async 'ff/alsa-sound)
626 (defalias 'ff/play-sound-async 'ding))
628 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
629 ;; I comment stuff often, let's be efficient. shift + down comments
630 ;; the current line and goes down, and shift + up uncomments the line
631 ;; and goes up (they are not the dual of each other, but moving and
632 ;; then uncommenting would be very counter-intuitive).
633 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
635 (defun ff/comment-and-go-down (arg)
636 "Comments and goes down ARG lines."
639 (comment-region (point-at-bol) (point-at-eol)) (error nil))
641 (if (> arg 1) (ff/comment-and-go-down (1- arg))))
643 (defun ff/uncomment-and-go-up (arg)
644 "Uncomments and goes up ARG lines."
647 (uncomment-region (point-at-bol) (point-at-eol)) (error nil))
649 (if (> arg 1) (ff/uncomment-and-go-up (1- arg))))
651 (define-key global-map [(shift down)] 'ff/comment-and-go-down)
652 (define-key global-map [(shift up)] 'ff/uncomment-and-go-up)
654 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
655 ;; Counting various entities in text
656 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
658 (defun ff/word-occurences ()
659 "Display in a new buffer the list of words sorted by number of
663 (let ((buf (get-buffer-create "*word counting*"))
664 (map (make-sparse-keymap))
665 (nb (make-hash-table))
666 (st (make-hash-table))
669 ;; Collects all words in a hash table
672 (goto-char (point-min))
673 (while (re-search-forward "\\([\\-a-zA-Z\\\\]+\\)" nil t)
674 (let* ((s (downcase (match-string-no-properties 1)))
677 (puthash k (1+ (gethash k nb 0)) nb))))
679 ;; Creates the result buffer
681 (define-key map "q" 'kill-this-buffer)
684 (setq show-trailing-whitespace nil)
687 ;; Builds a list from the hash table
691 (setq result (cons (cons value (gethash key st)) result)))
694 ;; Sort and display it
697 (if (and (> (car x) 3)
698 ;; No leading backslash and at least four characters
699 (string-match "^[^\\]\\{4,\\}" (cdr x))
701 (insert (number-to-string (car x)) " " (cdr x) "\n")))
702 (sort result (lambda (a b) (> (car a) (car b)))))
704 ;; Adjust the window size and stuff
706 (fit-window-to-buffer (get-buffer-window buf))
708 (set-buffer-modified-p nil))
711 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
713 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
717 (setq ps-print-color-p nil
718 ps-paper-type 'letter
720 ;; ps-top-margin (* 1.75 56.692)
721 ;; ps-left-margin 56.692
722 ;; ps-bottom-margin 56.692
723 ;; ps-right-margin 56.692
725 ;; Simple header. Remove that silly frame shadow.
727 ps-print-header-frame nil
728 ps-header-line-pad 0.3
729 ps-header-font-family 'Courier
730 ps-header-title-font-size '(8.5 . 10)
731 ;; ps-header-font-size '(6 . 7)
732 ps-header-font-size '(10 . 12)
733 ps-font-size '(7 . 8)
736 (ps-put 'ps-header-frame-alist 'back-color 1.0)
737 (ps-put 'ps-header-frame-alist 'shadow-color 1.0)
738 (ps-put 'ps-header-frame-alist 'border-color 0.0)
739 (ps-put 'ps-header-frame-alist 'border-width 0.0)
741 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
743 ;; http://blog.tuxicity.se/elisp/emacs/2010/03/26/rename-file-and-buffer-in-emacs.htm
745 (defun rename-file-and-buffer ()
746 "Renames current buffer and file it is visiting."
748 (let ((name (buffer-name))
749 (filename (buffer-file-name)))
750 (if (not (and filename (file-exists-p filename)))
751 (message "Buffer '%s' is not visiting a file!" name)
752 (let ((new-name (read-file-name "New name: " filename)))
753 (cond ((get-buffer new-name)
754 (message "A buffer named '%s' already exists!" new-name))
756 (rename-file name new-name 1)
757 (rename-buffer new-name)
758 (set-visited-file-name new-name)
759 (set-buffer-modified-p nil)))))))
761 (global-set-key (kbd "C-c r") 'rename-file-and-buffer)
763 (defun ff/non-existing-filename (dir prefix suffix)
764 "Returns a filename of the form DIR/PREFIX[.n].SUFFIX whose file does
767 (f (concat prefix suffix)))
768 (while (file-exists-p (concat dir "/" f))
770 f (concat prefix "." (prin1-to-string n) suffix)))
773 (defun ff/print-buffer-or-region-with-faces (&optional file)
775 ;; I am fed up with spell checking highlights
776 (when (and flyspell-mode
777 ;; (or ispell-minor-mode flyspell-mode)
778 (not (y-or-n-p "The spell checking is on, still print ? ")))
779 (error "Printing cancelled, the spell-checking is on"))
783 (ps-print-region-with-faces (region-beginning) (region-end) file)
785 (ps-print-buffer-with-faces file)))
787 (defun ff/print-to-file (file)
788 "Prints the region if selected or the whole buffer in postscript
793 "PS file: " "/tmp/" nil nil
794 (ff/non-existing-filename
796 (replace-regexp-in-string "[^a-zA-Z0-9_.-]" "_" (file-name-nondirectory
800 (ff/print-buffer-or-region-with-faces file))
802 (defun ff/print-to-printer ()
803 "Prints the region if selected or the whole buffer to a postscript
806 (message "Printing to '%s'" (getenv "PRINTER"))
807 (ff/print-buffer-or-region-with-faces))
809 ;; Can you believe it? There is a "print" key on PC keyboards ...
811 (define-key global-map [(print)] 'ff/print-to-file)
812 (define-key global-map [(shift print)] 'ff/print-to-printer)
814 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
815 ;; Dealing with the laptop battery
816 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
818 (defcustom ff/battery-dirs '("/sys/class/power_supply/BAT0"
819 "/sys/class/power_supply/BAT1")
820 "*Where to gather the battery information")
822 (defcustom ff/temperature-files '("/sys/class/thermal/thermal_zone0/temp"
823 "/sys/class/thermal/thermal_zone1/temp")
824 "*Where to gather the thermal information")
826 (defun ff/file-first-line (file)
828 (insert-file-contents-literally file)
829 (buffer-substring (point-at-bol) (point-at-eol))))
831 (defun ff/battery-discharging (l)
832 (and l (or (string= (ff/file-first-line (concat (car l) "/status")) "Discharging")
833 (ff/battery-discharging (cdr l)))))
835 ;; If there is one "Discharging" among the states of all the
836 ;; batteries, the global state is 'discharging. Otherwise, if there is
837 ;; a "Charging", the state is 'charging. If none is true, it is
839 (defun ff/battery-state (l)
841 (let ((u (ff/file-first-line (concat (car l) "/status"))))
842 (if (string= u "Discharging") 'discharging
843 (let ((s (ff/battery-state (cdr l))))
844 (if (eq s 'discharging) 'discharging
845 (if (or (eq s 'charging) (string= u "Charging"))
853 (defun ff/sum-values-from-files (list-files prefix)
858 (string-to-number (ff/file-first-line (format "%s/%s" f prefix)))
863 (defun ff/battery-percent ()
865 (/ (* 100 (ff/sum-values-from-files ff/battery-dirs "energy_now"))
866 (ff/sum-values-from-files ff/battery-dirs "energy_full"))
870 (defun ff/temp-info-string () (interactive)
876 (lambda (f) (string-to-number (ff/file-first-line f)))
877 ff/temperature-files))
881 (let ((s (format "%dC " temp)))
883 (propertize s 'face 'font-lock-warning-face)
892 (defun ff/battery-info-string () (interactive)
894 (pcase (ff/battery-state ff/battery-dirs)
895 ;; (`charging (format "c%d%%" (ff/battery-percent)))
896 ;; (`discharging (format "d%d%%" (ff/battery-percent)))
898 (`charging (format "↑%d%%" (ff/battery-percent)))
899 (`discharging (format "↓%d%%" (ff/battery-percent)))
905 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
907 (defun ff/system-info () (interactive)
909 (let ((buf (get-buffer-create "*system info*"))
910 (map (make-sparse-keymap)))
912 (define-key map "q" 'kill-this-buffer)
915 (setq show-trailing-whitespace nil)
918 (let ((highlight nil))
922 (if (setq highlight (not highlight))
924 (with-temp-buffer (apply 'call-process x)
926 'face '(:background "#d0d0ff"))
927 (with-temp-buffer (apply 'call-process x)
933 ("hostname" nil t nil "-f")
935 ("df" nil t nil "-h")
938 ("ssh-add" nil t nil "-l")
941 (goto-char (point-min))
942 (while (re-search-forward "^$" nil t) (backward-delete-char 1))
944 (fit-window-to-buffer (get-buffer-window buf))
946 (set-buffer-modified-p nil)
949 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
950 ;; Make a sound when there is new mail
951 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
953 ;; I do not like sounds anymore
955 ;; (setq ff/already-boinged-for-mail nil)
957 ;; (defun ff/boing-if-new-mail ()
958 ;; (if mail (when (not ff/already-boinged-for-mail)
959 ;; ;; (ff/play-sound-async "~/local/sounds/boing1.wav")
960 ;; ;; (ff/show-unspooled-mails)
961 ;; (setq ff/already-boinged-for-mail t))
962 ;; (setq ff/already-boinged-for-mail nil))
965 ;; (add-hook 'display-time-hook 'ff/boing-if-new-mail)
967 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
969 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
973 display-time-interval 10 ;; Check every 10s
975 display-time-string-forms `(
981 ,@(when (ff/battery-info-string)
982 '((ff/temp-info-string)))
984 ,@(when (ff/battery-info-string)
986 (ff/battery-info-string)
987 'face 'ff/battery-info-face)))
999 'face 'ff/date-info-face)
1003 ;; display-time-format "%b %a %e %H:%M"
1004 ;; display-time-mail-face nil
1007 ;; Show the time, mail and stuff
1010 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1011 ;; Moving through buffers
1012 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1014 (defun ff/next-buffer ()
1015 "Switches to the next buffer in cyclic order."
1017 (let ((buffer (current-buffer)))
1018 (switch-to-buffer (other-buffer buffer))
1019 (bury-buffer buffer)))
1021 (defun ff/prev-buffer ()
1022 "Switches to the previous buffer in cyclic order."
1024 (let ((list (nreverse (buffer-list)))
1026 (while (and (not found) list)
1027 (let ((buffer (car list)))
1028 (if (and (not (get-buffer-window buffer))
1029 (not (string-match "\\` " (buffer-name buffer))))
1030 (setq found buffer)))
1031 (setq list (cdr list)))
1032 (switch-to-buffer found)))
1034 ;; (define-key global-map [?\C-x right] 'ff/next-buffer)
1035 ;; (define-key global-map [?\C-x left] 'ff/prev-buffer)
1036 ;; (define-key global-map [?\M-\]] 'ff/next-buffer)
1037 ;; (define-key global-map [?\M-\[] 'ff/prev-buffer)
1039 (define-key global-map [(meta right)] 'ff/next-buffer)
1040 (define-key global-map [(meta left)] 'ff/prev-buffer)
1042 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1043 ;; There is actually a decent terminal emulator in emacs!
1044 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1048 (defun ff/kill-associated-buffer (process str) (interactive)
1049 (let ((buffer (process-buffer process)))
1050 (kill-buffer buffer))
1051 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
1053 (defun ff/kill-associated-buffer-and-delete-windows (process str) (interactive)
1054 (let ((buffer (process-buffer process)))
1055 (delete-windows-on buffer)
1056 (kill-buffer buffer))
1057 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
1059 (defun ff/shell-new-buffer (buffername program &rest param)
1060 "Start a terminal-emulator in a new buffer with the shell PROGRAM,
1061 optionally invoked with the parameters PARAM. The process associated
1062 to the shell can be killed without query."
1069 (while (get-buffer (concat "*" bn "*"))
1071 bn (format "%s<%d>" buffername n)))
1073 (set-buffer (apply 'make-term (append (list bn program nil) param)))
1075 (setq show-trailing-whitespace nil)
1077 (message "C-c C-k term-char-mode, C-c C-j term-line-mode. \
1078 In line mode: M-p previous line, M-n next line.")
1080 ;; A standard setup of the face above is not enough, I have to
1081 ;; force them here. Since I have a gray90 background, I like
1086 '((term-green :foreground "green3")
1087 (term-cyan :foreground "cyan3")
1088 (term-default-fg-inv :foreground "gray90" :background "black")
1091 (term-set-escape-char ?\C-x)
1093 ;; I like the shell buffer and windows to be deleted when the
1094 ;; shell process terminates. It's a bit of a mess to acheive this.
1096 (let ((process (get-buffer-process (current-buffer))))
1097 (process-kill-without-query process)
1098 (set-process-sentinel process
1099 ;; 'ff/kill-associated-buffer-and-delete-windows
1100 'ff/kill-associated-buffer
1103 ;; (switch-to-buffer-other-window (concat "*" bn "*"))
1104 (switch-to-buffer (concat "*" bn "*"))
1107 (defcustom ff/default-bash-commands '("ssh")
1108 "*List of commands to be used for completion when invoking a new
1109 bash shell with `ff/bash-new-buffer'.")
1111 (defun ff/bash-new-buffer (universal)
1112 "Starts a bash in a new buffer. When invoked with a universal
1113 argument, asks for a command to execute in that bash shell. The list
1114 of commands in `ff/default-bash-commands' is used for auto-completion"
1118 (let ((cmd (completing-read
1120 (mapcar (lambda (x) (cons x t)) ff/default-bash-commands))))
1121 (ff/shell-new-buffer cmd "/bin/bash" "-c" cmd))
1123 (ff/shell-new-buffer "bash" "/bin/bash")))
1125 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1129 (setq ;; Always follow links if the file is under version control
1130 vc-follow-symlinks t
1133 (when (load "vc-git" nil t)
1134 (add-to-list 'vc-handled-backends 'GIT))
1136 ;; alarm-vc.el is one of my own scripts, check my web page
1138 (when (ff/load-or-alert "alarm-vc" t)
1139 (setq alarm-vc-mode-exceptions "^VM"))
1141 (when (ff/load-or-alert "git")
1142 (setq git-show-unknown nil)
1145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1146 ;; Makes .sh and others files executable automagically
1147 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1149 ;; Please consider the security-related consequences of using it
1151 ;; (defun ff/make-shell-scripts-executable (&optional filename)
1152 ;; (setq filename (or filename (buffer-name)))
1153 ;; (when (and (string-match "\\.sh$\\|\\.pl$\\|\\.rb" filename)
1154 ;; (not (file-executable-p filename))
1156 ;; (set-file-modes filename 493)
1157 ;; (message "Made %s executable" filename)))
1159 ;; (add-hook 'after-save-hook 'ff/make-shell-scripts-executable)
1161 (add-hook 'after-save-hook
1162 'executable-make-buffer-file-executable-if-script-p)
1164 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1165 ;; Cool stuff to navigate in emacs-lisp sources
1166 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1170 (defun ff/goto-function-definition (&optional goback)
1171 "Go directly to the definition of the function at point. With
1172 goback argument, go back where we were."
1175 (if (not (and (boundp 'goto-function-history) goto-function-history))
1176 (error "We were nowhere, buddy")
1177 (message "Come back")
1178 (switch-to-buffer (car (car goto-function-history)))
1179 (goto-char (cdr (car goto-function-history)))
1180 (setq goto-function-history (cdr goto-function-history)))
1182 (let ((function (function-called-at-point)))
1184 (let ((location (find-function-search-for-symbol
1186 (symbol-file function))))
1187 (setq goto-function-history
1188 (cons (cons (current-buffer) (point))
1189 (and (boundp 'goto-function-history)
1190 goto-function-history)))
1191 (pop-to-buffer (car location))
1192 (goto-char (cdr location)))))))
1194 (define-key global-map [(meta g)] 'ff/goto-function-definition)
1195 (define-key global-map [(meta G)] (lambda () (interactive)
1196 (ff/goto-function-definition t)))
1198 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1199 ;; The big stuff (bbdb, mailcrypt, etc.)
1200 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1202 ;; Failsafe version if we can't load bbdb
1203 (defun ff/explicit-name (email) email)
1207 (when (ff/load-or-alert "bbdb")
1210 ;; Stop asking (if not t or nil, will not ask)
1211 bbdb-offer-save 'never
1212 ;; I hate when bbdb decides to mess up my windows
1214 ;; I have no problem with bbdb asking me if the sender email
1215 ;; does not match exactly the address we have in the database
1216 bbdb-quiet-about-name-mismatches 0
1217 ;; I have european friends, too
1218 bbdb-north-american-phone-numbers-p nil
1219 ;; To cycle through all possible addresses
1220 bbdb-complete-name-allow-cycling t
1221 ;; Cycle with full names only, not through all net-addresses alone too
1222 bbdb-dwim-net-address-allow-redundancy t
1223 ;; Do not add new addresses automatically
1224 bbdb-always-add-addresses nil
1227 (defface ff/known-address-face
1228 '((t (:foreground "blue2")))
1229 "The face to display known mail identities.")
1231 (defface ff/unknown-address-face
1232 '((t (:foreground "gray50")))
1233 "The face to display unknown mail identities.")
1235 (defun ff/explicit-name (email)
1236 "Returns a string identity for the first address in EMAIL. The
1237 identity is taken from bbdb if possible or from the address itself
1238 with mail-extract-address-components. The suffix \"& al.\" is added if
1239 there are more than one address.
1241 If no bbdb record is found, the name is propertized with the face
1242 ff/unknown-address-face. If a record is found and contains a note
1243 'face, the associated face is used, otherwise
1244 ff/known-address-face is used."
1247 (let* ((data (mail-extract-address-components email))
1250 (record (bbdb-search-simple nil net)))
1255 (propertize (bbdb-record-name record)
1257 (or (cdr (assoc 'face
1258 (bbdb-record-raw-notes record)))
1259 'ff/known-address-face))
1261 (propertize (or (and data (concat "<" net ">"))
1263 'face 'ff/unknown-address-face)
1265 (if (string-match "," (mail-strip-quoted-names email)) " & al.")
1269 (ff/configure-faces '((ff/robot-address-face :foreground "green4")
1270 (ff/personal-address-face :foreground "dark magenta" :weight 'bold)
1271 (ff/important-address-face :foreground "red3"
1277 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1278 ;; An encrypted file to put secure stuff (passwords, ...)
1279 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1281 (when (ff/load-or-alert "mailcrypt")
1282 (mc-setversion "gpg")
1283 ;; Keep the passphrase for 10min
1284 (setq mc-passwd-timeout 600
1285 ff/secure-note-file "~/private/secure-notes.gpg")
1288 (defface ff/secure-date
1289 '((t (:background "white" :weight bold)))
1290 "The face to display the dates in the modeline.")
1292 (defun ff/secure-note-add () (interactive)
1295 (let ((b (find-buffer-visiting ff/secure-note-file)))
1296 (and b (switch-to-buffer b)))
1297 (find-file ff/secure-note-file)
1298 ;; Adds a new entry (i.e. date and a bunch of empty lines)
1299 (goto-char (point-min))
1301 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
1306 ;; Colorizes the dates
1309 (goto-char (point-min))
1310 (while (re-search-forward
1311 "^-- [0-9]+ [a-z]+ [0-9]+ [0-9]+:[0-9]+:[0-9]+ -+$"
1313 (add-text-properties
1314 (match-beginning 0) (1+ (match-end 0))
1315 '(face ff/secure-date rear-nonsticky t))))
1317 (set-buffer-modified-p nil)
1318 (setq buffer-undo-list nil)
1321 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1323 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1325 (setq ;; For french, aspell is far better than ispell
1326 ispell-program-name "aspell"
1327 ;; To avoid ispell errors in figure filenames, labels, references.
1328 ;; ispell-tex-skip-alists
1330 ;; (append (car ispell-tex-skip-alists)
1331 ;; '(("\\\\citep" ispell-tex-arg-end) ;; JMLR
1332 ;; ("\\\\cite" ispell-tex-arg-end)
1333 ;; ("\\\\nocite" ispell-tex-arg-end)
1334 ;; ("\\\\includegraphics" ispell-tex-arg-end)
1335 ;; ("\\\\author" ispell-tex-arg-end)
1336 ;; ("\\\\ref" ispell-tex-arg-end)
1337 ;; ("\\\\label" ispell-tex-arg-end)
1339 ;; (cadr ispell-tex-skip-alists))
1341 ;; So that reftex follows the text when moving in the summary
1342 reftex-toc-follow-mode nil
1343 ;; So that reftex visits files to follow
1344 reftex-revisit-to-follow t
1347 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1348 ;; Used in a \includegraphics runs xfig with the corresponding .fig
1349 ;; file or gimp with the corresponding bitmap picture
1350 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1352 (defun ff/run-eps-edition (prefix rules &optional force)
1354 (let ((filename (concat prefix (car (car rules)))))
1355 (if (or force (file-exists-p filename))
1356 (start-process "latex-eps-editor" nil (cdr (car rules)) filename)
1357 (ff/run-eps-edition prefix (cdr rules) force)))
1358 (message "No original file found for %seps" prefix)))
1360 (defcustom ff/xdvi-for-latex-options nil
1361 "*Options to pass to xdvi when invoking `ff/run-viewer'")
1363 (defun ff/run-viewer (universal)
1365 "Starts an editor for the .eps at point (either xfig or gimp,
1366 depending with the original file it can find), or starts xdvi for
1367 the current .tex if no .eps is found at point. When run with a
1368 universal argument starts xfig even if the .fig does not exist"
1372 (if (and (save-excursion
1373 (and (re-search-backward "{" (point-at-bol) t)
1374 (or (re-search-forward "{\\([^{}]*.\\)eps}" (point-at-eol) t)
1375 (re-search-forward "{\\([^{}]*.\\)pdf}" (point-at-eol) t)
1376 (re-search-forward "{\\([^{}]*.\\)pdf_t}" (point-at-eol) t)
1377 (re-search-forward "{\\([^{}]*.\\)png}" (point-at-eol) t)
1378 (re-search-forward "{\\([^{}]*.\\)jpg}" (point-at-eol) t)
1380 (and (<= (match-beginning 1) (point))
1381 (>= (match-end 1) (- (point) 2))))
1383 (ff/run-eps-edition (match-string-no-properties 1)
1386 ("png" . "gimp") ("pgm" . "gimp") ("ppm" . "gimp")
1390 (if (not (and (buffer-file-name) (string-match "\\(.*\\)\.tex$"
1391 (buffer-file-name))))
1392 (message "Not a latex file!")
1393 (condition-case nil (kill-process xdvi-process) (error nil))
1394 (let ((dvi-name (concat (match-string 1 (buffer-file-name)) ".dvi")))
1395 (if (not (file-exists-p dvi-name)) (error "Can not find %s !" dvi-name)
1396 (message "Starting xdvi with %s" dvi-name)
1397 (setq xdvi-process (apply 'start-process
1398 (append '("xdvi-for-latex" nil "xdvi")
1399 ff/xdvi-for-latex-options
1401 (process-kill-without-query xdvi-process))))
1404 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1407 ;; When working on a tex file with other people, I can just change
1408 ;; ff/tex-command in the -*- part of the file so that I don't mess up
1409 ;; other's people configuration.
1411 (defadvice tex-file (around ff/set-my-own-tex-command () activate)
1413 (or (and (boundp 'ff/tex-command)
1418 ;; This is a bit hardcore, but really I can't bear the superscripts in
1419 ;; my emacs window and could not find another way to deactivate them.
1422 (defun tex-font-lock-suscript (pos) ())
1424 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1425 ;; Prevents many errors from beeping and makes the others play a nifty
1427 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1429 (defun ff/ring-bell ()
1430 (unless (memq this-command
1432 abort-recursive-edit
1435 backward-delete-char-untabify
1436 delete-backward-char
1437 minibuffer-complete-and-exit
1438 previous-line next-line
1439 backward-char forward-char
1440 scroll-up scroll-down
1441 enlarge-window-horizontally shrink-window-horizontally
1442 enlarge-window shrink-window
1445 ;; (message "command [%s]" (prin1-to-string this-command))
1446 ;; (ff/play-sound-async "~/local/sounds/short_la.wav")
1449 (setq ring-bell-function 'ff/ring-bell)
1451 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1452 ;; Past the content of the url currently in the kill-ring with
1454 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1456 (defun ff/insert-url (&optional url)
1457 "Downloads an URL with lynx and inserts it after the point."
1458 (interactive "MUrl: ")
1460 (message "Inserting %s" url)
1461 (insert (concat "from: " url "\n\n"))
1462 ;; (call-process "lynx" nil t nil "-nolist" "-dump" url))
1463 (call-process "w3m" nil t nil "-dump" url))
1466 (define-key global-map [(shift mouse-2)]
1467 (lambda () (interactive) (ff/insert-url (current-kill 0))))
1469 ;; lookup-dict is one of my own scripts, check my web page
1471 (when (ff/load-or-alert "lookup-dict" t)
1472 (define-key global-map [(control \?)] 'lookup-dict))
1474 ;; (defun ff/generate-password () (interactive)
1475 ;; (let ((c "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-"))
1476 ;; (nth (random (length c)) c))
1478 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1479 ;; Automatization of things I do often
1480 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1482 (defun ff/snip () (interactive)
1483 (let ((start (condition-case nil (region-beginning) (error (point))))
1484 (end (condition-case nil (region-end) (error (point)))))
1486 (insert "----------------------------- snip snip -----------------------------\n")
1488 (insert "----------------------------- snip snip -----------------------------\n")
1491 (defun ff/start-latex ()
1492 "Adds all that stuff to start a new LaTeX document."
1494 (goto-char (point-min))
1495 (insert "%% -*- mode: latex; mode: reftex; mode: flyspell; coding: utf-8; tex-command: \"pdflatex.sh\" -*-
1497 \\documentclass[12pt,a4paper,twoside]{article}
1498 \\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.5cm,right=2.5cm]{geometry}
1499 \\usepackage[utf8]{inputenc}
1500 \\usepackage{amsmath}
1501 \\usepackage{amssymb}
1502 \\usepackage[pdftex]{graphicx}
1503 \\usepackage{microtype}
1504 \\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue]{hyperref}
1506 \\setlength{\\parindent}{0cm}
1507 \\setlength{\\parskip}{12pt}
1508 \\renewcommand{\\baselinestretch}{1.3}
1510 \\def\\argmax{\\operatornamewithlimits{argmax}}
1511 \\def\\argmin{\\operatornamewithlimits{argmin}}
1513 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1515 %%\\usepackage[default]{opensans}
1516 %%\\usepackage{cmbright}
1517 %%\\renewcommand{\\familydefault}{fos}
1518 %%\\renewcommand{\\seriesdefault}{l}
1519 %%\\renewcommand{\\bfdefault}{sb}
1520 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1521 %% The \\todo command
1522 \\newcounter{nbdrafts}
1523 \\setcounter{nbdrafts}{0}
1525 \\newcommand{\\checknbdrafts}{
1526 \\ifnum \\thenbdrafts > 0
1527 \\@latex@warning@no@line{*WARNING* The document contains \\thenbdrafts \\space draft note(s)}
1529 \\newcommand{\\todo}[1]{\\addtocounter{nbdrafts}{1}{\\color{red} #1}}
1531 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1537 (goto-char (point-max))
1544 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1546 (defun ff/add-copyrights ()
1547 "Adds two lines for the (C) at the beginning of current buffer."
1550 (let ((comment-style 'plain))
1552 (goto-char (point-min))
1554 ;; If this is a script, put the copyrights after the first line
1556 (when (re-search-forward "^#!" nil t)
1560 (let ((start (point))
1561 (comment-style 'box))
1565 "\nSTART_IP_HEADER\n"
1567 (when (boundp 'user-full-name)
1568 (concat "\nWritten by " user-full-name "\n"))
1570 (when (boundp 'user-mail-address)
1571 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1576 (comment-region start (point)))
1580 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1582 (defun ff/remove-ip-header () (interactive)
1584 (goto-char (point-min))
1585 (when (and (re-search-forward "START_IP_HEADER" nil t)
1586 (re-search-forward "END_IP_HEADER" nil t))
1590 (defun ff/add-gpl ()
1591 "Adds the GPL statements at the beginning of current buffer."
1593 (let ((comment-style 'box)
1598 ;; This program is free software; you can redistribute it and/or
1599 ;; modify it under the terms of the GNU General Public License
1600 ;; version 2 as published by the Free Software Foundation.
1602 ;; This program is distributed in the hope that it will be useful, but
1603 ;; WITHOUT ANY WARRANTY\; without even the implied warranty of
1604 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1605 ;; General Public License for more details.
1611 This program is free software: you can redistribute it and/or modify
1612 it under the terms of the version 3 of the GNU General Public License
1613 as published by the Free Software Foundation.
1615 This program is distributed in the hope that it will be useful, but
1616 WITHOUT ANY WARRANTY; without even the implied warranty of
1617 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1618 General Public License for more details.
1620 You should have received a copy of the GNU General Public License
1621 along with this program. If not, see <http://www.gnu.org/licenses/>.
1624 (when (boundp 'user-full-name)
1625 (concat "Written by and Copyright (C) " user-full-name "\n"))
1627 (when (boundp 'user-mail-address)
1628 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1636 (goto-char (point-min))
1638 ;; If this is a script, put the gpl after the first line
1639 (when (re-search-forward "^#!" nil t)
1643 (let ((start (point)))
1645 (comment-region start (point)))
1648 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1650 (defun ff/start-c ()
1651 "Adds the header to start a C program."
1653 ;; (beginning-of-buffer)
1659 int main(int argc, char **argv) {
1666 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1668 (defun ff/start-c++ ()
1669 "Adds the header to start a C++ program."
1671 ;; (beginning-of-buffer)
1680 using namespace std;
1682 int main(int argc, char **argv) {
1689 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1691 (defun ff/headerize ()
1692 "Adds the #define HEADER_H, etc."
1694 (let ((flag-name (replace-regexp-in-string
1696 (upcase (file-name-nondirectory (buffer-file-name))))))
1697 (goto-char (point-max))
1698 (insert "\n#endif\n")
1699 (goto-char (point-min))
1700 (insert (concat "#ifndef " flag-name "\n"))
1701 (insert (concat "#define " flag-name "\n"))
1705 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1707 (defun ff/start-html ()
1708 "Adds all that stuff to start a new HTML file."
1710 (goto-char (point-min))
1711 (insert "<?xml version=\"1.0\" encoding=\"utf-8\"?>
1712 <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
1714 <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
1717 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
1719 <style type=\"text/css\">
1728 (goto-char (point-max))
1736 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1738 ;; Insert a line showing all the variables written on the current line
1739 ;; and separated by commas
1741 (defun ff/cout-var (arg)
1742 "Invoked on a line with a list of variables names,
1743 it inserts a line which displays their values in cout, or cerr if
1744 the function is invoked with a universal arg"
1746 (let ((line (if arg "cerr" "cout")))
1747 (goto-char (point-at-bol))
1748 ;; Regexp syntax sucks moose balls, honnest. To match '[', just
1749 ;; put it as the first char in the [...] ... This leads to some
1750 ;; obvious things like the following
1751 (while (re-search-forward "\\([][a-zA-Z0-9_.:\(\)]+\\)" (point-at-eol) t)
1753 (concat line " << \" "
1754 (match-string 1) " = \" << " (match-string 1))))
1755 (goto-char (point-at-bol))
1757 (insert line " << endl\;\n")
1758 (indent-region (point-at-bol 0) (point-at-eol 0) nil)
1761 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1763 (defun ff/clean-article ()
1764 "Cleans up an article by removing the leading blanks on each line
1765 and refilling all the paragraphs."
1767 (let ((fill-column 92))
1768 (goto-char (point-min))
1769 (while (re-search-forward "^\\ +" nil t)
1770 (replace-match "" nil nil))
1771 (fill-individual-paragraphs (point-min) (point-max) t)))
1773 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1775 (defun ff/start-slide ()
1777 (insert "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1781 (save-excursion (insert "}{}
1791 (define-key latex-mode-map [(meta S)] 'ff/start-slide)
1792 (define-key latex-mode-map [(control c) (control a)] 'align-current)
1793 (define-key latex-mode-map [(control end)] 'tex-close-latex-block)
1794 (define-key latex-mode-map [(control tab)] 'ispell-complete-word)
1795 (copy-face 'default 'tex-verbatim)
1796 ;; (ff/configure-faces '((tex-verbatim :background "gray95")))
1799 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1801 (defun ff/start-test-code ()
1803 (let ((start (point)))
1805 { // ******************************* START ***************************
1806 #warning Test code added on "
1807 (format-time-string "%04Y %b %02d %02H:%02M:%02S" (current-time))
1810 } // ******************************** END ****************************
1813 (indent-region start (point) nil))
1817 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1819 (defun ff/code-to-html () (interactive)
1821 (narrow-to-region (region-beginning) (region-end))
1822 (replace-string "\"" """ nil (point-min) (point-max))
1823 (replace-string " " " " nil (point-min) (point-max))
1824 (replace-string ">" ">" nil (point-min) (point-max))
1825 (replace-string "<" "<" nil (point-min) (point-max))
1826 (replace-string "\e" "^[" nil (point-min) (point-max))
1827 (replace-string "
\7f" "^?" nil (point-min) (point-max))
1828 (replace-string "
\1f" "^_" nil (point-min) (point-max))
1829 (replace-regexp "$" "<br />" nil (point-min) (point-max))
1833 (defun ff/downcase-html-tags () (interactive)
1835 (beginning-of-buffer)
1836 (while (re-search-forward "<\\([^>]+\\)>" nil t)
1837 (downcase-region (match-beginning 1) (match-end 1)))
1841 ;; If we enter html mode and there is no makefile around, create a
1842 ;; compilation command with tidy (this is cool stuff)
1844 (add-hook 'html-mode-hook
1846 (unless (or (not (buffer-file-name))
1847 (file-exists-p "makefile")
1848 (file-exists-p "Makefile"))
1849 (set (make-local-variable 'compile-command)
1850 (let ((fn (file-name-nondirectory buffer-file-name)))
1851 (format "tidy -utf8 %s > /tmp/%s" fn fn))))))
1853 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1855 (defun ff/count-words-region (beginning end)
1856 "Print number of words in the region.
1857 Words are defined as at least one word-constituent character
1858 followed by at least one character that is not a
1859 word-constituent. The buffer's syntax table determines which
1860 characters these are."
1863 (message "Counting words in region ... ")
1865 (goto-char beginning)
1867 (while (< (point) end)
1868 (re-search-forward "\\w+\\W+")
1869 (setq count (1+ count)))
1870 (cond ((zerop count) (message "The region does NOT have any word."))
1871 ((= 1 count) (message "The region has 1 word."))
1872 (t (message "The region has %d words." count))))))
1874 ;; (add-hook 'html-mode-hook 'flyspell-mode)
1876 (defun ff/tidy-html ()
1877 "Run tidy in on the content of the current buffer, put the result in
1880 (call-process-region (point-min) (point-max)
1883 (list nil (make-temp-file "/tmp/tidy-html."))))
1885 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1887 ;; Create the adequate embryo of a file if it does not exist
1889 (defun ff/start-file () (interactive)
1890 (let ((filename (buffer-file-name)))
1893 (when (string-match "\\.sh$" filename)
1895 (insert "#!/bin/bash\n\nset -e\nset -o pipefail\n\n")
1897 (ff/add-copyrights))
1900 (when (string-match "\\.html$" filename)
1906 (when (string-match "\\.h$" filename)
1917 (when (string-match "\\.c$" filename)
1922 (when (string-match "\.\\(cc\\|cpp\\)$" filename)
1925 (let ((headername (replace-regexp-in-string "\\.\\(cc\\|cpp\\)$" ".h"
1927 (if (file-exists-p headername)
1928 (insert (concat "\n#include \"" (file-name-nondirectory headername) "\"\n"))
1932 (when (string-match "\\.tex$" filename)
1937 (set-buffer-modified-p nil)
1940 (if (>= emacs-major-version 22)
1941 (add-to-list 'find-file-not-found-functions 'ff/start-file)
1942 (add-to-list 'find-file-not-found-hooks 'ff/start-file))
1944 (when (>= emacs-major-version 24)
1945 (define-obsolete-function-alias 'make-local-hook 'ignore "21.1")
1946 (setq send-mail-function 'sendmail-send-it) ;; emacs 24.x stuff
1949 '(diff-added ((default (:background "gray90" :foreground "green4" :weight bold))))
1950 '(diff-removed ((default (:background "gray90" :foreground "red2" :weight bold))))
1951 '(diff-changed ((default (:background "gray90" :foreground "blue" :weight bold))))
1955 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1957 (define-key global-map [f8] 'ff-find-other-file)
1958 (define-key global-map [(shift f8)] (lambda () (interactive) (ff-find-other-file t)))
1960 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1961 ;; Antiword, htmlize and boxquote
1962 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1964 (autoload 'no-word "no-word")
1965 (add-to-list 'auto-mode-alist '("\\.doc\\'" . no-word))
1966 ;; (add-to-list 'auto-mode-alist '("\\.DOC\\'" . no-word))
1968 (autoload 'htmlize-buffer "htmlize" nil t)
1970 (setq boxquote-top-and-tail "------------------")
1971 (autoload 'boxquote-region "boxquote" nil t)
1973 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1974 ;; The compilation hacks
1975 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1977 ;; If we enter c++ mode and there is no makefile around, we create a
1978 ;; make command on the fly for the specific object file
1980 (add-hook 'c++-mode-hook
1982 (unless (or (file-exists-p "makefile") (file-exists-p "Makefile"))
1983 (set (make-local-variable 'compile-command)
1986 (file-name-sans-extension
1987 (file-name-nondirectory buffer-file-name)))))))
1989 ;; <f1> runs the compilation according to the compile-command (and
1990 ;; thus does not ask any confirmation), shows the compilation buffer
1991 ;; during compilation and delete all windows showing the compilation
1992 ;; buffer if the compilation ends with no error
1994 ;; <shift-f1> asks for a compilation command and runs the compilation
1995 ;; but does not restore the window configuration (i.e. the compilation
1996 ;; buffer's window will still be visible, as usual)
1998 ;; <f2> goes to the next compilation error (as C-x ` does on the
1999 ;; standard configuration)
2001 (defun ff/restore-windows-if-no-error (buffer msg)
2002 "Delete the windows showing the compilation buffer if msg
2003 matches \"^finished\"."
2005 (when (string-match "^finished" msg)
2006 ;; (delete-windows-on buffer)
2007 (if (boundp 'ff/window-configuration-before-compilation)
2008 (set-window-configuration ff/window-configuration-before-compilation))
2012 (add-to-list 'compilation-finish-functions 'ff/restore-windows-if-no-error)
2014 (defun ff/fast-compile ()
2015 "Compiles without asking anything."
2017 (let ((compilation-read-command nil))
2018 (setq ff/window-configuration-before-compilation (current-window-configuration))
2019 (compile compile-command)))
2021 (setq compilation-read-command t
2022 compile-command "make -j -k"
2023 compile-history '("make clean" "make DEBUG=yes -j -k" "make -j -k")
2026 (defun ff/universal-compile () (interactive)
2027 (funcall (or (cdr (assoc major-mode
2029 (latex-mode . tex-file)
2030 (html-mode . browse-url-of-buffer)
2031 ;; Here you can add other mode -> compile command
2033 'ff/fast-compile ;; And this is the failsafe
2036 (define-key global-map [f1] 'ff/universal-compile)
2037 (define-key global-map [(shift f1)] 'compile)
2038 (define-key global-map [f2] 'next-error)
2040 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2042 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2044 ;; (when (ff/load-or-alert "flyspell-timer" t)
2045 ;; (add-hook 'flyspell-mode-hook 'flyspell-timer-ensure-idle-timer))
2047 (defun ff/start-flyspell () (interactive)
2050 ;; (flyspell-incorrect :background "#ff0000" :foreground "black")
2051 ;; (flyspell-duplicate :background "#ff9000" :foreground "black")
2052 (flyspell-incorrect :foreground "#ff0000" :weight 'bold)
2053 (flyspell-duplicate :foreground "#ff9000" :weight 'bold)
2055 ;; (flyspell-buffer)
2058 (add-hook 'flyspell-mode-hook 'ff/start-flyspell)
2060 (defun ff/pick-dictionnary () (interactive)
2061 (when (and (boundp 'flyspell-mode) flyspell-mode)
2062 (if (and current-input-method (string-match "latin" current-input-method))
2063 (ispell-change-dictionary "francais")
2064 (ispell-change-dictionary "american"))
2065 ;; (flyspell-buffer)
2069 (defadvice toggle-input-method (after ff/switch-dictionnary nil activate)
2070 (ff/pick-dictionnary))
2072 ;; (add-hook 'message-mode-hook 'auto-fill-mode)
2073 ;; (add-hook 'message-mode-hook 'flyspell-mode)
2075 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2076 ;; Delete all windows which are in the same "column", which means
2077 ;; whose xmin and xmax are bounded by the xmin and xmax of the
2078 ;; currently selected column
2079 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2081 ;; This is from emacs23 ! better than my old ff/delete-other-windows-in-column
2083 (unless (fboundp 'delete-other-windows-vertically)
2085 (defun delete-other-windows-vertically (&optional window)
2086 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
2087 This may be a useful alternative binding for \\[delete-other-windows]
2088 if you often split windows horizontally."
2090 (let* ((window (or window (selected-window)))
2091 (edges (window-edges window))
2093 (while (not (eq (setq w (next-window w 1)) window))
2094 (let ((e (window-edges w)))
2095 (when (and (= (car e) (car edges))
2096 (= (caddr e) (caddr edges)))
2098 (mapc 'delete-window delenda)))
2101 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2103 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2107 (defun ff/entropy (l)
2112 (* (- x) (/ (log x) (log 2)))))
2117 ;; Usefull to deal with results in latex files
2119 (defun ff/round-floats-in-region () (interactive)
2122 (narrow-to-region (region-beginning) (region-end))
2123 (error (thing-at-point 'word)))
2125 (goto-char (point-min))
2126 (while (re-search-forward "[0-9\.]+" nil t)
2127 (let ((value (string-to-number (buffer-substring (match-beginning 0) (match-end 0)))))
2128 (delete-region (match-beginning 0) (match-end 0))
2129 (insert (format "%0.2f" value)))))))
2131 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2133 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2137 (define-key global-map [(shift iso-lefttab)] 'ispell-complete-word)
2138 ;; shift-tab going backward is kind of standard
2139 (define-key Info-mode-map [(shift iso-lefttab)] 'Info-prev-reference)
2141 ;; (define-key global-map [(control x) (control a)] 'auto-fill-mode)
2143 ;; Put back my keys, you thief!
2144 (define-key global-map [(home)] 'beginning-of-buffer)
2145 (define-key global-map [(end)] 'end-of-buffer)
2146 ;; (define-key global-map [(insertchar)] 'overwrite-mode)
2147 (define-key global-map [(delete)] 'delete-char)
2149 ;; Cool shortcuts to move to the end / beginning of block keen
2150 (define-key global-map [(control right)] 'forward-sexp)
2151 (define-key global-map [(control left)] 'backward-sexp)
2153 ;; Wheel mouse moves up and down 2 lines (and DO NOT BEEP when we are
2154 ;; out of the buffer)
2156 (define-key global-map [mouse-4]
2157 (lambda () (interactive) (condition-case nil (scroll-down 2) (error nil))))
2158 (define-key global-map [mouse-5]
2159 (lambda () (interactive) (condition-case nil (scroll-up 2) (error nil))))
2161 ;; with shift it goes faster
2162 (define-key global-map [(shift mouse-4)]
2163 (lambda () (interactive) (condition-case nil (scroll-down 50) (error nil))))
2164 (define-key global-map [(shift mouse-5)]
2165 (lambda () (interactive) (condition-case nil (scroll-up 50) (error nil))))
2167 ;; Meta-? shows the properties of the character at point
2168 (define-key global-map [(meta ??)]
2169 (lambda () (interactive)
2170 (message (prin1-to-string (text-properties-at (point))))))
2172 ;; Compiles the latex file in the current buffer
2174 (setq tex-start-commands "\\input")
2175 (define-key global-map [f3] 'tex-file)
2176 (define-key global-map [(shift f3)] 'tex-bibtex-file)
2178 ;; To run xdvi on the dvi associated to the .tex in the current
2179 ;; buffer, and to edit the .fig or bitmap image used to generate the
2182 (define-key global-map [f4] 'ff/run-viewer)
2184 ;; Closes the current \begin{}
2186 ;; Meta-/ remaped (completion)
2188 (define-key global-map [(shift right)] 'dabbrev-expand)
2189 (define-key global-map [(meta =)] 'dabbrev-expand)
2191 ;; Change the current window.
2193 (defun ff/next-same-frame-window () (interactive)
2194 (select-window (next-window (selected-window)
2195 (> (minibuffer-depth) 0)
2198 (defun ff/previous-same-frame-window () (interactive)
2199 (select-window (previous-window (selected-window)
2200 (> (minibuffer-depth) 0)
2203 (define-key global-map [(shift prior)] 'ff/next-same-frame-window)
2204 (define-key global-map [(shift next)] 'ff/previous-same-frame-window)
2206 (define-key global-map [(control })] 'enlarge-window-horizontally)
2207 (define-key global-map [(control {)] 'shrink-window-horizontally)
2208 (define-key global-map [(control \")] 'enlarge-window)
2209 (define-key global-map [(control :)] 'shrink-window)
2211 ;; (define-key global-map [(control shift prior)] 'next-multiframe-window)
2212 ;; (define-key global-map [(control shift next)] 'previous-multiframe-window)
2214 ;; I have two screens sometime!
2215 ;; (define-key global-map [(meta next)] 'other-frame)
2216 ;; (define-key global-map [(meta prior)] (lambda () (interactive) (other-frame -1)))
2220 ;; (define-key global-map [(shift backspace)] 'winner-undo)
2222 ;; (define-key global-map [(shift home)] 'delete-other-windows-vertically)
2223 ;; (define-key global-map [(control +)] 'enlarge-window)
2224 ;; (define-key global-map [(control -)] 'shrink-window)
2225 ;; Goes to next/previous buffer
2226 ;; (define-key global-map [(control prior)] 'ff/next-buffer)
2227 ;; (define-key global-map [(control next)] 'ff/prev-buffer)
2229 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2230 ;; If M-. on a symbol, show where it is defined in another window
2231 ;; without giving focus, cycle if repeated.
2232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2234 (when (ff/load-or-alert "etags")
2236 (defun ff/find-tag-nofocus () (interactive)
2237 "Show in another window the definition of the current tag"
2238 (let ((tag (find-tag-default)))
2239 (display-buffer (find-tag-noselect tag (string= tag last-tag)))
2240 (message "Tag %s" tag)
2244 (define-key global-map [(meta .)] 'ff/find-tag-nofocus)
2247 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2248 ;; Destroys the current buffer and its window if it's not the only one
2249 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2251 (defcustom ff/kill-this-buffer-and-delete-window-exceptions ""
2252 "*Regexp matching the buffer names which have to be kept when using
2253 `ff/kill-this-buffer-and-delete-window'.")
2255 (defun ff/kill-this-buffer-and-delete-window (universal)
2256 "Unless its name matches
2257 `ff/kill-this-buffer-and-delete-window-exceptions', kills the
2258 current buffer and deletes the current window if it's not the
2259 only one in the frame. If the buffer has to be kept, go to the
2260 next one. With universal argument, kill all killable buffers."
2263 (let ((nb-killed 0))
2265 (unless (string-match ff/kill-this-buffer-and-delete-window-exceptions
2268 (setq nb-killed (1+ nb-killed))
2271 (message "Killed %d buffer%s" nb-killed (if (> nb-killed 1) "s" "")))
2272 (if (string-match ff/kill-this-buffer-and-delete-window-exceptions (buffer-name))
2274 (kill-this-buffer)))
2275 (unless (one-window-p t) (delete-window))
2278 (define-key global-map [(control backspace)] 'ff/kill-this-buffer-and-delete-window)
2279 ;; (define-key calc-mode-map [(control backspace)] 'calc-quit)
2282 (setq ff/kill-this-buffer-and-delete-window-exceptions
2283 "^ \\|\\*Messages\\*\\|\\*scratch\\*\\|\\*Group\\*\\|\\*-jabber-\\*\\|\\*-jabber-process-\\*\\|\\*media\\*")
2285 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2287 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2289 (defun ff/elisp-debug-on ()
2290 "Switches `debug-on-error' and `debug-on-quit'."
2293 (setq debug-on-error nil
2295 (setq debug-on-error t
2298 (message "elisp debug on")
2299 (message "elisp debug off")))
2301 (defun ff/create-dummy-buffer (&optional universal) (interactive "P")
2302 (find-file (concat "/tmp/" (ff/non-existing-filename "/tmp/" "dummy" "")))
2304 (if universal (ff/insert-url (current-kill 0)))
2305 (message "New dummy text-mode buffer"))
2307 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2308 ;; Recentf to keep a list of recently visited files. I use it
2309 ;; exclusively with my selector.el
2310 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2314 ;; If we just check for file-symlink-p, everytime we start emacs it
2315 ;; will check all the remote files listed in recentf-list, so we check
2316 ;; that they are not remote first
2317 (defun ff/file-not-remote-but-symlink (filename)
2318 (and (not (file-remote-p filename)) (file-symlink-p filename)))
2320 (setq recentf-exclude (append recentf-exclude
2322 ff/file-not-remote-but-symlink
2323 "enotes$" "secure-notes$" "media-playlists$"
2325 "svn-commit.tmp$" ".git/COMMIT_EDITMSG$"
2326 "\.bbl$" "\.aux$" "\.toc$"
2328 recentf-max-saved-items 1000
2329 recentf-save-file (concat ff/emacs-dir "/recentf")
2332 (when (boundp 'recentf-keep) (add-to-list 'recentf-keep 'file-remote-p))
2336 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2337 ;; My front-end to mplayer
2338 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2340 ;; (ff/compile-when-needed "media/mplayer")
2341 ;; (ff/compile-when-needed "media")
2343 (when (ff/load-or-alert "media")
2345 (unless window-system
2348 (media/mode-string-face
2349 :foreground "blue4" :weight 'bold)
2351 (media/current-tune-face
2352 :foreground "black" :background "yellow" :weight 'normal)
2354 (media/instant-highlight-face
2355 :foreground "black" :background "orange" :weight 'normal)
2359 (define-key global-map [(meta \\)] 'media)
2361 (setq media/expert t
2362 media/add-current-song-to-interrupted-when-killing t
2363 media/duration-to-history 30
2364 media/history-size 1000
2365 media/playlist-file (concat ff/emacs-dir "/media-playlists")
2366 media/mplayer/args '(
2370 "-subfont-osd-scale" "3"
2371 ;; "-stop-xscreensaver"
2374 media/mplayer/timing-request-period 1.0
2378 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2380 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2382 ;; selector.el is one of my own scripts, check my web page
2384 (when (ff/load-or-alert "selector" t)
2385 ;; (define-key global-map [(shift return)] 'selector/quick-move-in-buffer)
2386 (define-key global-map [(control x) (control b)] 'selector/switch-buffer)
2388 (defun ff/visit-debpkg-file (&optional regexp)
2389 "This function lists all the files found with dpkg -S and
2390 proposes to visit them."
2391 (interactive "sPattern: ")
2397 (cons (selector/filename-to-string s) s))
2399 (shell-command-to-string (concat "dpkg -S " regexp " | awk '{print $2}'"))))
2402 "*selector find-file*"
2406 (add-hook 'selector/mode-hook (lambda () (setq truncate-lines t)))
2408 (defun ff/selector-insert-record-callback (r)
2409 (bbdb-display-records (list r))
2410 ;; Weird things will happen if you kill the buffer from which you
2411 ;; invoked ff/selector-mail-from-bbdb
2412 (insert (car (elt r 6)))
2415 (defun ff/selector-compose-mail-callback (r)
2416 (vm-compose-mail (car (elt r 6)))
2419 (defun ff/selector-mail-from-bbdb () (interactive)
2422 (lambda (r) (cons (concat (elt r 0)
2430 (if (string= mode-name "Mail")
2431 'ff/selector-insert-record-callback
2432 'ff/selector-compose-mail-callback)
2437 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2438 ;; My script to automatically count the number of words and characters
2439 ;; between two markers
2441 (ff/load-or-alert "text-counters.el")
2443 ;; Display them in the modeline when in text-mode
2445 (add-hook 'text-mode-hook 'tc/add-text-counters-in-modeline)
2447 ;; (add-hook 'text-mode-hook
2449 ;; (setq comment-start " > ")))
2451 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2452 ;; A function to remove temporary alarm windows
2453 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2455 (defcustom ff/annoying-windows-regexp
2456 "\\*Messages\\*\\|\\*compilation\\*\\|\\*tex-shell\\*\\|\\*Help\\*\\|\\*info\\*\\|\\*Apropos\\*\\|\\*BBDB\\*\\|\\*.*-diff\\*"
2457 "The regexp matching the windows to be deleted by `ff/delete-annoying-windows'"
2460 (defun ff/delete-annoying-windows ()
2461 "Close all the windows showing buffers whose names match
2462 `ff/annoying-windows-regexp'."
2464 (when ff/annoying-windows-regexp
2466 (when (and (not (one-window-p w))
2467 (string-match ff/annoying-windows-regexp
2468 (buffer-name (window-buffer w))))
2472 (message "Removed annoying windows")
2476 (setq ff/annoying-windows-regexp
2477 (concat ff/annoying-windows-regexp
2478 "\\|\\*unspooled mails\\*\\|\\*enotes alarms\\*\\|\\*system info\\*"))
2480 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2481 ;; Some handy functions
2482 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2484 (defun ff/twin-horizontal-current-buffer () (interactive)
2485 (delete-other-windows)
2486 (split-window-horizontally)
2490 (defun ff/twin-vertical-current-buffer () (interactive)
2491 (delete-other-windows)
2492 (split-window-vertically)
2496 (defun ff/flyspell-mode (arg) (interactive "p")
2497 (if flyspell-mode (flyspell-mode -1)
2502 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2504 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2506 (defun ff/move-region-to-fridge () (interactive)
2507 "Cut the current region, paste it in a file called ./fridge
2508 with a time tag, and save this file"
2509 (unless (use-region-p) (error "No region selected"))
2510 (let ((bn (file-name-nondirectory (buffer-file-name))))
2511 (kill-region (region-beginning) (region-end))
2512 (with-current-buffer (find-file-noselect "fridge")
2513 (goto-char (point-max))
2515 (insert "######################################################################\n")
2517 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
2523 (message "Region moved to fridge")
2528 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2529 ;; My own keymap mapped to C-`
2530 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2532 (setq ff/map (make-sparse-keymap))
2533 (define-key global-map [(control \`)] ff/map)
2535 (unless window-system
2536 ;; (define-key global-map [(control @)] ff/map)
2537 (define-key global-map [(meta O) \`] ff/map)
2540 (define-key esc-map "`" ff/map)
2542 (defun ff/git-status (&optional dir) (interactive)
2543 (if (buffer-file-name)
2544 (git-status (file-name-directory (buffer-file-name)))
2545 (error "No file attached to this buffer")))
2547 (defun ff/insert-date (&optional universal) (interactive "P")
2548 ;; (insert (format-time-string "\n * %Y %b %d %H:%M:%S\n\n" (current-time)))
2549 ;; (insert (format-time-string "%Y %b %d %H:%M:%S" (current-time)))
2550 ;; (insert (format-time-string "%d.%m.%y" (current-time)))
2552 (insert (format-time-string "%d.%m.%Y %H:%M:%S" (current-time)))
2553 (insert (format-time-string "%d.%m.%Y" (current-time))))
2556 (define-key ff/map [(control g)] 'ff/git-status)
2557 (define-key ff/map [(control w)] 'server-edit)
2558 (define-key ff/map [(control d)] 'ff/elisp-debug-on)
2559 ;; (define-key ff/map "d" 'diary)
2560 (define-key ff/map "d" 'ff/insert-date)
2561 (define-key ff/map [(control \`)] 'ff/bash-new-buffer)
2562 (define-key ff/map [(control n)] 'enotes/show-all-notes)
2563 (define-key ff/map [(control s)] 'ff/secure-note-add)
2564 (define-key ff/map [(control t)] 'ff/start-test-code)
2565 (define-key ff/map [(control q)] 'ff/create-dummy-buffer)
2566 (define-key ff/map [(control a)] 'auto-fill-mode)
2567 (define-key ff/map [(control i)] 'ff/system-info)
2568 (define-key ff/map "w" 'ff/word-occurences)
2569 (define-key ff/map [(control c)] 'calendar)
2570 ;; (define-key ff/map [(control c)] (lambda () (interactive) (save-excursion (calendar))))
2571 (define-key ff/map [(control l)] 'goto-line)
2572 (define-key ff/map "l" 'longlines-mode)
2573 (define-key ff/map [(control o)] 'selector/quick-pick-recent)
2574 (define-key ff/map "s" 'selector/quick-move-in-buffer)
2575 (define-key ff/map "S" 'selector/search-sentence)
2576 (define-key ff/map "t" (lambda () (interactive) (find-file "~/private/TODO.txt")))
2577 (define-key ff/map "h" 'ff/tidy-html)
2578 (define-key ff/map "c" 'ff/count-char)
2579 (define-key ff/map [(control p)] 'ff/print-to-file)
2580 (define-key ff/map "P" 'ff/print-to-printer)
2581 (define-key ff/map [(control b)] 'bbdb)
2582 (define-key ff/map "m" 'ff/selector-mail-from-bbdb)
2583 (define-key ff/map [(control m)] 'woman)
2584 (define-key ff/map "b" 'bookmark-jump)
2585 (define-key ff/map [(control =)] 'calc)
2586 (define-key ff/map [(control shift b)]
2587 (lambda () (interactive)
2590 (define-key ff/map "f" 'ff/move-region-to-fridge)
2591 (define-key ff/map [(control f)] 'ff/flyspell-mode)
2593 (define-key ff/map [?\C-0] 'ff/delete-annoying-windows)
2594 (define-key ff/map "1" 'delete-other-windows)
2595 (define-key ff/map [?\C-1] 'delete-other-windows)
2596 (define-key ff/map "2" 'ff/twin-vertical-current-buffer)
2597 (define-key ff/map [?\C-2] 'ff/twin-vertical-current-buffer)
2598 (define-key ff/map "3" 'ff/twin-horizontal-current-buffer)
2599 (define-key ff/map [?\C-3] 'ff/twin-horizontal-current-buffer)
2601 (define-key ff/map " " 'delete-trailing-whitespace)
2603 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2604 ;; Hacks so that all keys are functionnal in xterm and through ssh.
2605 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2607 (unless window-system
2609 ;; One day I will understand these clipboard business. Until then,
2610 ;; so that it works in xterm (yes), let's use xclip. This is a bit
2613 ;; (defun ff/yank-with-xclip (&optional arg)
2614 ;; "Paste the content of the X clipboard with the xclip
2615 ;; command. Without ARG converts some of the '\\uxxxx' characters."
2616 ;; (interactive "P")
2617 ;; (with-temp-buffer
2618 ;; (shell-command "xclip -o" t)
2620 ;; (mapc (lambda (x) (replace-string (concat "\\u" (car x)) (cdr x) nil (point-min) (point-max)))
2621 ;; '(("fffd" . "??")
2632 ;; (kill-ring-save (point-min) (point-max)))
2636 ;; (define-key global-map [(meta y)] 'ff/yank-with-xclip)
2638 ;; (set-terminal-coding-system 'iso-latin-1)
2639 ;; (set-terminal-coding-system 'utf-8)
2641 ;; I have in my .Xressource
2643 ;; XTerm.VT100.translations: #override\n\
2644 ;; <Btn4Down>,<Btn4Up>:scroll-back(2,line)\n\
2645 ;; <Btn5Down>,<Btn5Up>:scroll-forw(2,line)\n\
2646 ;; Ctrl<Btn4Down>,Ctrl<Btn4Up>:scroll-back(1,page)\n\
2647 ;; Ctrl<Btn5Down>,Ctrl<Btn5Up>:scroll-forw(1,page)\n\
2648 ;; Shift<Btn4Down>,Shift<Btn4Up>:scroll-back(1,halfpage)\n\
2649 ;; Shift<Btn5Down>,Shift<Btn5Up>:scroll-forw(1,halfpage)\n\
2650 ;; Alt<KeyPress>:insert-eight-bit()\n\
2651 ;; !Shift<Key>BackSpace: string("
\7f")\n\
2652 ;; Ctrl<Key>BackSpace: string("\eOZ")\n\
2653 ;; Shift<Key>Prior: string("\e[5;2~")\n\
2654 ;; Shift<Key>Next: string("\e[6;2~")\n\
2655 ;; Shift Ctrl<Key>]: string("\eO}")\n\
2656 ;; Shift Ctrl<Key>[: string("\eO{")\n\
2657 ;; Shift Ctrl<Key>/: string("\eO?")\n\
2658 ;; Ctrl<Key>/: string("\eO/")\n\
2659 ;; Shift Ctrl<Key>=: string("\eO+")\n\
2660 ;; Ctrl<Key>=: string("\eO=")\n\
2661 ;; Shift Ctrl<Key>;: string("\eO:")\n\
2662 ;; Ctrl<Key>;: string("\eO;")\n\
2663 ;; Shift Ctrl<Key>`: string("\eO~")\n\
2664 ;; Ctrl<Key>`: string("\eO`")\n\
2665 ;; Shift Ctrl<Key>': string("\eO\\\"")\n\
2666 ;; Ctrl<Key>': string("\eO'")\n\
2667 ;; Shift Ctrl<Key>.: string("\eO>")\n\
2668 ;; Ctrl<Key>.: string("\eO.")\n\
2669 ;; Shift Ctrl<Key>\\,: string("\eO<")\n\
2670 ;; Ctrl<Key>\\,: string("\eO,")
2672 (define-key function-key-map "\e[2~" [insert])
2674 (define-key function-key-map "\e[Z" [S-iso-lefttab])
2676 (define-key function-key-map "\e[1;2A" [S-up])
2677 (define-key function-key-map "\e[1;2B" [S-down])
2678 (define-key function-key-map "\e[1;2C" [S-right])
2679 (define-key function-key-map "\e[1;2D" [S-left])
2680 (define-key function-key-map "\e[1;2F" [S-end])
2681 (define-key function-key-map "\e[1;2H" [S-home])
2683 (define-key function-key-map "\e[2;2~" [S-insert])
2684 (define-key function-key-map "\e[5;2~" [S-prior])
2685 (define-key function-key-map "\e[6;2~" [S-next])
2687 (define-key function-key-map "\e[1;2P" [S-f1])
2688 (define-key function-key-map "\e[1;2Q" [S-f2])
2689 (define-key function-key-map "\e[1;2R" [S-f3])
2690 (define-key function-key-map "\e[1;2S" [S-f4])
2691 (define-key function-key-map "\e[15;2~" [S-f5])
2692 (define-key function-key-map "\e[17;2~" [S-f6])
2693 (define-key function-key-map "\e[18;2~" [S-f7])
2694 (define-key function-key-map "\e[19;2~" [S-f8])
2695 (define-key function-key-map "\e[20;2~" [S-f9])
2696 (define-key function-key-map "\e[21;2~" [S-f10])
2698 (define-key function-key-map "\e[1;5A" [C-up])
2699 (define-key function-key-map "\e[1;5B" [C-down])
2700 (define-key function-key-map "\e[1;5C" [C-right])
2701 (define-key function-key-map "\e[1;5D" [C-left])
2702 (define-key function-key-map "\e[1;5F" [C-end])
2703 (define-key function-key-map "\e[1;5H" [C-home])
2705 (define-key function-key-map "\e[2;5~" [C-insert])
2706 (define-key function-key-map "\e[5;5~" [C-prior])
2707 (define-key function-key-map "\e[6;5~" [C-next])
2709 (define-key function-key-map "\e[1;9A" [M-up])
2710 (define-key function-key-map "\e[1;9B" [M-down])
2711 (define-key function-key-map "\e[1;9C" [M-right])
2712 (define-key function-key-map "\e[1;9D" [M-left])
2713 (define-key function-key-map "\e[1;9F" [M-end])
2714 (define-key function-key-map "\e[1;9H" [M-home])
2716 (define-key function-key-map "\e[2;9~" [M-insert])
2717 (define-key function-key-map "\e[5;9~" [M-prior])
2718 (define-key function-key-map "\e[6;9~" [M-next])
2720 ;; The following ones are not standard
2722 (define-key function-key-map "\eO}" (kbd "C-}"))
2723 (define-key function-key-map "\eO{" (kbd "C-{"))
2724 (define-key function-key-map "\eO?" (kbd "C-?"))
2725 (define-key function-key-map "\eO/" (kbd "C-/"))
2726 (define-key function-key-map "\eO:" (kbd "C-:"))
2727 (define-key function-key-map "\eO;" (kbd "C-;"))
2728 (define-key function-key-map "\eO~" (kbd "C-~"))
2729 (define-key function-key-map "\eO`" (kbd "C-\`"))
2730 (define-key function-key-map "\eO\"" (kbd "C-\""))
2731 (define-key function-key-map "\eO|" (kbd "C-|"))
2732 (define-key function-key-map "\eO'" (kbd "C-'"))
2733 (define-key function-key-map "\eO>" (kbd "C->"))
2734 (define-key function-key-map "\eO." (kbd "C-."))
2735 (define-key function-key-map "\eO<" (kbd "C-<"))
2736 (define-key function-key-map "\eO," (kbd "C-,"))
2737 (define-key function-key-map "\eO-" (kbd "C--"))
2738 (define-key function-key-map "\eO=" (kbd "C-="))
2739 (define-key function-key-map "\eO+" (kbd "C-+"))
2741 (define-key function-key-map "\eOZ" [C-backspace])
2743 (define-key minibuffer-local-map "
\10" 'previous-history-element)
2744 (define-key minibuffer-local-map "
\ e" 'next-history-element)
2746 ;; (define-key global-map [(alt prior)] 'ff/prev-buffer)
2747 ;; (define-key global-map [(alt next)] 'ff/next-buffer)
2751 ;; I am fed up with Alt-Backspace in the minibuffer erasing the
2752 ;; content of the kill-ring
2754 (defun ff/backward-delete-word (arg)
2755 "Delete characters forward until encountering the end of a word, but do not put them in the kill ring.
2756 With argument ARG, do this that many times."
2758 (delete-region (point) (progn (forward-word (- arg)) (point))))
2760 (define-key minibuffer-local-map
2761 [remap backward-kill-word] 'ff/backward-delete-word)
2763 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2765 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2767 ;; Where to save the bookmarks and where is bbdb
2769 (setq bookmark-default-file (concat ff/emacs-dir "/bmk")
2770 bbdb-file "~/private/bbdb"
2771 custom-file (concat ff/emacs-dir "/custom"))
2773 ;; enotes.el is one of my own scripts, check my web page
2775 (when (ff/load-or-alert "enotes" t)
2776 (setq enotes/file "~/private/enotes"
2777 enotes/show-help nil
2778 enotes/full-display nil
2779 enotes/default-time-fields "9:30")
2782 ;; (add-hook 'enotes/alarm-hook
2783 ;; (lambda () (ff/play-sound-async "~/local/sounds/three_notes2.wav")))
2786 ;; (when (ff/load-or-alert "goto-last-change.el")
2787 ;; (define-key global-map [(control x) (control a)] 'goto-last-change))
2789 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2790 ;; My private stuff (email adresses, mail filters, etc.)
2791 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2793 (ff/load-or-alert "~/private/emacs.perso.el" t)
2795 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2797 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2799 ;; Runs in server mode, so that emacsclient works
2802 (defun ff/raise-frame-and-give-focus ()
2805 (x-focus-frame (selected-frame))
2806 (set-mouse-pixel-position (selected-frame) 4 4)
2809 ;; Raises the window when the server is invoked
2811 (add-hook 'server-switch-hook 'ff/raise-frame-and-give-focus)