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 (when (fboundp 'horizontal-scroll-bar-mode)
35 (horizontal-scroll-bar-mode -1))
37 ;; This is where I put most of my emacs-related files
38 (setq ff/emacs-dir "~/private/emacs")
39 (unless (file-exists-p ff/emacs-dir)
40 (mkdir ff/emacs-dir t))
42 ;; Give the focus to the emacs window if we are under a windowing
46 ;; (x-focus-frame nil)
47 (set-mouse-pixel-position (selected-frame) 4 4))
49 ;; Where I keep my own scripts
51 (add-to-list 'load-path "~/sources/gpl/elisp")
52 (add-to-list 'load-path "~/sources/elisp")
53 (add-to-list 'load-path "~/local/elisp")
55 ;; No, I do not like menus
59 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 0)))
60 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 1)))
61 (when (functionp 'fringe-mode) (fringe-mode 10))
63 ;; And I do not like scrollbar neither
64 (when (functionp 'scroll-bar-mode) (scroll-bar-mode -1))
66 ;; Make all "yes or no" prompts be "y or n" instead
67 (fset 'yes-or-no-p 'y-or-n-p)
69 ;; The space bar acting as "yes" has been several times really
71 (define-key query-replace-map (kbd "SPC") nil)
73 ;; Show the matching parenthesis and do it immediately, we are in a
75 (setq show-paren-delay 0)
78 ;; use colorization for all modes
79 (global-font-lock-mode t)
81 (setq font-lock-maximum-decoration 3
82 ;;'((latex-mode . 2) (t . 2))
85 ;; Activate the dynamic completion of buffer names
88 ;; Save the minibuffer history
89 (setq savehist-file (concat ff/emacs-dir "/savehist"))
90 (when (functionp 'savehist-mode) (savehist-mode 1))
92 ;; And allow minibuffer recursion
93 (setq enable-recursive-minibuffers t)
94 (minibuffer-depth-indicate-mode 1)
96 ;; I do not like tooltips
97 (when (functionp 'tooltip-mode) (tooltip-mode nil))
99 ;; Activate the dynamic completion in the mini-buffer
102 ;; (setq highlight-current-line-globally t
103 ;; highlight-current-line-ignore-regexp "Faces\\|Colors\\| \\*Mini\\|\\*media\\|INBOX")
105 ;; (highlight-current-line-minor-mode 1)
106 ;; (highlight-current-line-set-bg-color "gray75")
108 (defun ff/compile-when-needed (name)
109 "Compiles the given file only if needed. Adds .el if required, and
110 uses `load-path' to find it."
111 (if (not (string-match "\.el$" name))
112 (ff/compile-when-needed (concat name ".el"))
114 (let* ((src (concat dir "/" name)))
115 (when (file-newer-than-file-p src (concat src "c"))
116 (if (let ((byte-compile-verbose nil))
118 (byte-compile-file src)
120 (message (format "Compiled %s" src ))
121 (message (format "Failed compilation of %s" src))))))
124 ;; This is useful when using the same .emacs in many places
126 (defun ff/load-or-alert (name &optional compile-when-needed)
127 "Tries to load the specified file and insert a warning message in a
128 load-warning buffer in case of failure."
130 (when compile-when-needed (ff/compile-when-needed name))
132 (if (load name t nil) t
133 (let ((buf (get-buffer-create "*loading warnings*")))
136 (insert (propertize "Warning:" 'face 'font-lock-warning-face) " could not load '" name "'\n")
137 (fit-window-to-buffer (get-buffer-window buf))
138 (set-buffer-modified-p nil))
141 ;; This is the default in emacs 22.1 and later
142 ;; (auto-compression-mode 1)
144 ;; make emacs use the clipboard so that copy/paste works for other
145 ;; x-programs. I have no clue how all that clipboard thing works.
147 ;; (setq x-select-enable-clipboard t)
148 ;; (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
149 ;; (setq x-select-enable-primary t)
150 ;; (setq x-select-enable-clipboard t)
151 ;; (global-set-key "\C-y" 'clipboard-yank)
157 ;; avoid GC as much as possible
158 gc-cons-threshold 2500000
160 ;; no startup message
161 inhibit-startup-screen t
163 ;; no message in the scratch buffer
164 initial-scratch-message nil
166 ;; do not fill my buffers, you fool
167 next-line-add-newlines nil
169 ;; keep the window focused on the messages during compilation
170 compilation-scroll-output t
172 ;; Keep the highlight on the compilation error
173 next-error-highlight t
175 ;; blink the screen instead of beeping
178 ;; take the CR when killing a line
181 ;; I prefer to move between lines as defined in the buffer, not
185 ;; I comment empty lines, too (does not seem to work, though)
186 comment-empty-lines t
188 ;; We want long lines to be truncated instead of displayed on several lines
190 ;; Show all lines, even if the window is not as large as the frame
191 ;; truncate-partial-width-windows nil
192 ;; truncate-partial-width-windows t
194 ;; Do not keep tracks of the autosaved files
195 auto-save-list-file-prefix nil
197 ;; Show me empty lines at the end of the buffer
198 default-indicate-empty-lines t
200 ;; Show me the region until I do something on it
201 transient-mark-mode t
203 ;; Do not color stuff which are clickable when hovering over it
206 ;; Don't bother me with questions even if "unsafe" local variables
208 enable-local-variables :all
210 ;; I have no problem with small windows
213 ;; I am not a fan of develock
214 develock-auto-enable nil
216 ;; I do not like women to open windows
217 woman-use-own-frame nil
219 ;; I am not that paranoid, contrary to what you think
220 epa-file-cache-passphrase-for-symmetric-encryption t
221 ;; And I like ascii files
224 ;; tramp-default-method "ssh"
225 tramp-default-method "scp"
227 ;; I have no problem with files having their own local variables
230 mail-from-style 'angles
231 browse-url-mozilla-program "firefox"
233 mc-use-default-recipients t
235 ;; browse-url-new-window-flag t
237 ;; I do not like compilation to automatically split the active window
238 ;; vertically, even when the said window is very wide
239 split-height-threshold 0
240 split-width-threshold nil
247 temporary-file-directory "/tmp/"
248 vc-make-backup-files t
249 backup-directory-alist '((".*" . "~/misc/emacs.backups/"))
250 version-control t ;; Use backup files with numbers
253 delete-old-versions t
254 backup-by-copying-when-linked t
257 (setq tramp-backup-directory-alist backup-directory-alist)
259 (setq user-emacs-directory "~/misc/emacs.d/")
262 abbrev-file-name (concat user-emacs-directory "abbrev_defs")
263 server-auth-dir (concat user-emacs-directory "server/")
264 custom-theme-directory user-emacs-directory
267 ;; Stop this crazy blinking cursor
268 (blink-cursor-mode 0)
270 ;; (setq blink-cursor-delay 0.25
271 ;; blink-cursor-interval 0.25)
273 ;; (set-terminal-coding-system 'utf-8)
275 ;; (unless window-system
276 ;; (xterm-mouse-mode 1)
277 ;; (if (string= (getenv "TERM") "xterm-256color")
278 ;; (ff/load-or-alert "xterm-256color" t))
283 ;; Show white spaces at the end of lines
284 show-trailing-whitespace t
286 ;; Do not show the cursor in non-active window
287 cursor-in-non-selected-windows nil
292 ;; when on a TAB, the cursor has the TAB length
295 ;; This is the default coding system when toggle-input-method is
297 default-input-method "latin-1-prefix"
299 ;; do not put tabs when indenting
301 ;; Stop indenting automatically, that's annoying
302 electric-indent-chars nil
304 ;; And yes, we have a fast display / connection / whatever
308 ;; To keep the cursor always visible when it moves (thanks
310 redisplay-dont-pause t
312 ;; I want to see the keys I type instantaneously
316 ;; Show the column number
317 (column-number-mode 1)
319 ;; What modes for what file extentions
320 (add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode))
324 (add-to-list 'auto-mode-alist '("\\.txt\\'" . (lambda()
330 (add-hook 'c++-mode-hook 'flyspell-prog-mode)
331 (add-hook 'log-edit-mode-hook 'flyspell-mode)
335 (put 'narrow-to-region 'disabled nil)
336 (put 'upcase-region 'disabled nil)
337 (put 'downcase-region 'disabled nil)
338 ;; (put 'scroll-left 'disabled nil)
339 ;; (put 'scroll-right 'disabled nil)
341 ;; My selector is clearer than that
342 ;; (when (load "ido" t) (ido-mode t))
344 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
346 ;; Makes buffer names more explicit then <2>, <3> etc. when there are
347 ;; several identical filenames
349 (when (load "uniquify" t)
350 (setq uniquify-buffer-name-style 'post-forward-angle-brackets))
352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
354 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
356 (when (boundp 'x-display-name)
360 ;; If the display is :0.0, we make the assumption that we are
361 ;; running the emacs locally, and we do not show the
362 ;; hostname. Otherwise, show @host.
364 frame-title-format (concat "emacs" ;;invocation-name
365 (unless (string= x-display-name ":0.0")
366 (concat "@" system-name))
369 ;; Use the same for the icone
371 icon-title-format frame-title-format
374 ;; "tool" bar? Are you kidding?
375 (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
377 ;; ;; If my own letter icon is here, use it and change its color
378 ;; (when (file-exists-p "~/local/share/emacs/letter.xbm")
379 ;; (setq-default display-time-mail-icon
382 ;; :file "~/local/share/emacs/letter.xbm"
383 ;; :ascent center)))))
385 ;; My funky setting of face colors. Basically, we switch to a sober
386 ;; look and darken a bit the colors which need to (because of the
387 ;; darker background)
389 (defun ff/configure-faces (fl)
390 "Set face attributes and create faces when necessary"
392 (unless (boundp (car f)) (make-empty-face (car f)))
393 (eval `(set-face-attribute (car f) nil ,@(cdr f))))
396 ;; Not the same in xterm (which is gray in my case) and in
399 (unless window-system
400 ;; (xterm-mouse-mode 1)
402 '((italic :underline nil)
403 (info-title-2 :foreground "green")
404 (font-lock-comment-delimiter-face :foreground "green")
405 (font-lock-comment-face :foreground "green")
406 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
407 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
408 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
409 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
410 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
411 (diff-file-header-face :background "white" :foreground "black"
413 (diff-header-face :background "white" :foreground "black")
414 (diff-hunk-header-face :background "white" :foreground "black")
415 (diff-indicator-removed :foreground "red" :weight 'bold)
416 (diff-removed :foreground "red" :weight 'bold)
417 (diff-indicator-added :foreground "blue" :weight 'bold)
418 (diff-added :foreground "blue" :weight 'bold)
419 (font-lock-string-face :foreground "green")
420 (font-lock-variable-name-face :foreground "blue")
421 (font-lock-constant-face :foreground "blue")
422 (font-lock-preprocessor-face :foreground "green")
423 (font-lock-function-name-face :foreground "cyan")
424 (flyspell-incorrect :foreground "red2")
425 (flyspell-duplicate :foreground "OrangeRed2")
426 (hl-line :background "white")
427 (sh-heredoc :foreground "black" :background "#fff0f0")
428 (sh-heredoc-face :foreground "black" :background "#fff0f0")
429 (font-lock-keyword-face :foreground "blue")
430 (highlight :background "darkseagreen3")
431 (isearch :background "orange" :foreground "black")
432 (isearch-lazy-highlight-face' :background "yellow" :foreground "black")
433 ;; (display-time-mail-face :background "white")
434 (show-paren-match-face :background "gold" :foreground "black")
435 (show-paren-mismatch-face :background "red" :foreground "black")
436 (trailing-whitespace :background "white")
437 (mode-line :background "cornflowerblue" :foreground "black" :box nil
439 (header-line :background "cornflowerblue" :foreground "black" :box nil
441 (mode-line-inactive :background "gray60" :foreground "black" :box nil
443 (region :background "white" :foreground "black")
444 (ff/date-info-face :foreground "white" :weight 'bold)
445 (ff/mail-alarm-face :foreground "red" :weight 'bold)
446 (selector/selection :background "yellow")
447 (gui-button-face :background "green" :foreground "white")
448 (enotes/information-face :foreground "cyan")
450 (file-name-shadow :foreground "black")
451 (shadow :foreground "black")
452 (warning :foreground "black" :background "red")
456 ;; (list-colors-display (mapcar 'car color-name-rgb-alist))
458 ;; (ff/configure-faces '((default :background "black" :foreground "gray80")))
459 ;; (ff/configure-faces '((default :background "gray80" :foreground "black")))
463 ;; display-time-use-mail-icon t)
467 ;; (escape-glyph :foreground "#c0c0c0" :weight 'bold)
469 (escape-glyph :foreground "green3" :weight 'bold)
470 (default :background "gray90" :foreground "black")
471 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
472 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
473 (message-cited-text :foreground "red4")
474 (diff-mode :background "gray90" :weight 'bold)
475 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
476 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
477 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
478 (diff-file-header :background "white" :foreground "black"
480 (diff-header :background "white" :foreground "black")
481 (diff-hunk-header :background "white" :foreground "black")
482 (font-lock-builtin-face :foreground "deeppink3")
483 (font-lock-string-face :foreground "dark olive green")
484 (font-lock-variable-name-face :foreground "sienna")
485 ;; (font-lock-function-name-face :foreground "blue" :weight 'bold)
486 (font-lock-function-name-face :foreground "blue")
487 ;; (font-lock-comment-delimiter-face :foreground "dark violet")
488 ;; (font-lock-comment-face :foreground "dark violet")
489 (flyspell-incorrect :background "#ff0000" :foreground "black")
490 (flyspell-duplicate :background "#ff9000" :foreground "black")
491 (hl-line :background "white")
492 (sh-heredoc :foreground "black" :background "#fff0f0")
493 (sh-heredoc-face :foreground "black" :background "#fff0f0")
494 (header-line :background "gray65")
495 (highlight :background "turquoise")
496 (message-cited-text-face :foreground "firebrick")
497 (isearch :background "yellow" :foreground "black")
498 (isearch-lazy-highlight-face' :background "yellow3" :foreground "black")
499 (region :background "#b8b8e0" :foreground "black")
500 ;; (region :background "plum" :foreground "black")
501 (show-paren-match-face :background "gold" :foreground "black")
502 (show-paren-mismatch-face :background "red" :foreground "black")
503 (trailing-whitespace :background "gray65")
504 (cursor :inverse-video t)
505 (enotes/list-title-face :foreground "blue" :weight 'bold)
506 (mode-line :background "#b0b0ff" :foreground "black" :box nil
508 (header-line :background "cornflowerblue" :foreground "black" :box nil
510 (mode-line-inactive :background "gray80" :foreground "black" :box nil
512 ;; (fringe :background "black" :foreground "gray90")
513 (fringe :background "gray80")
514 (ff/date-info-face :foreground "white" :weight 'bold)
515 (ff/mail-alarm-face :foreground "white" :background "red2")
516 ;; (alarm-vc-face :foreground "black" :background "yellow" :weight 'normal)
517 (gui-button-face :background "green" :foreground "black")
521 ;; When we are root, put the modeline in red
523 (when (string= (user-real-login-name) "root")
525 '((mode-line :background "red3" :foreground "black" :box nil
529 ;; Why should I have to do this?
530 (add-hook 'sh-mode-hook
532 (set-face-attribute 'sh-heredoc nil
533 :foreground "#604000"
536 (set-face-attribute 'sh-heredoc-face nil
537 :foreground "#604000"
542 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
543 ;; Move the window on the buffer without moving the cursor
544 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
546 (defun ff/scroll-down ()
547 "Scroll the buffer down one line and keep the cursor at the same location."
553 (defun ff/scroll-up ()
554 "Scroll the buffer up one line and keep the cursor at the same location."
560 (defun ff/scroll-left ()
561 "Scroll the buffer left one column and keep the cursor at the same location."
567 (defun ff/scroll-right ()
568 "Scroll the buffer right one column and keep the cursor at the same location."
574 (define-key global-map [(meta up)] 'ff/scroll-down)
575 (define-key global-map [(meta down)] 'ff/scroll-up)
576 (define-key global-map [(meta p)] 'ff/scroll-down)
577 (define-key global-map [(meta n)] 'ff/scroll-up)
578 (define-key global-map [(meta right)] 'ff/scroll-left)
579 (define-key global-map [(meta left)] 'ff/scroll-right)
581 (defun ff/delete-trailing-whitespaces-and-indent ()
583 (delete-trailing-whitespace)
584 (indent-region (point-min) (point-max) nil))
586 (define-key global-map [(control c) (control q)] 'ff/delete-trailing-whitespaces-and-indent)
588 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
590 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
592 ;; (defun ff/esd-sound (file)
593 ;; "Plays a sound with the Enlighted sound daemon."
595 ;; (process-kill-without-query (start-process-shell-command "esdplay"
599 (defun ff/alsa-sound (file)
600 "Plays a sound with ALSA."
602 (process-kill-without-query (start-process-shell-command "aplay"
606 (if (and (boundp 'x-display-name) (string= x-display-name ":0.0"))
607 (defalias 'ff/play-sound-async 'ff/alsa-sound)
608 (defalias 'ff/play-sound-async 'ding))
610 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
611 ;; I comment stuff often, let's be efficient. shift + down comments
612 ;; the current line and goes down, and shift + up uncomments the line
613 ;; and goes up (they are not the dual of each other, but moving and
614 ;; then uncommenting would be very counter-intuitive).
615 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
617 (defun ff/comment-and-go-down (arg)
618 "Comments and goes down ARG lines."
621 (comment-region (point-at-bol) (point-at-eol)) (error nil))
623 (if (> arg 1) (ff/comment-and-go-down (1- arg))))
625 (defun ff/uncomment-and-go-up (arg)
626 "Uncomments and goes up ARG lines."
629 (uncomment-region (point-at-bol) (point-at-eol)) (error nil))
631 (if (> arg 1) (ff/uncomment-and-go-up (1- arg))))
633 (define-key global-map [(shift down)] 'ff/comment-and-go-down)
634 (define-key global-map [(shift up)] 'ff/uncomment-and-go-up)
636 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
637 ;; Counting various entities in text
638 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
640 (defun ff/word-occurences ()
641 "Display in a new buffer the list of words sorted by number of
645 (let ((buf (get-buffer-create "*word counting*"))
646 (map (make-sparse-keymap))
647 (nb (make-hash-table))
648 (st (make-hash-table))
651 ;; Collects all words in a hash table
654 (goto-char (point-min))
655 (while (re-search-forward "\\([\\-a-zA-Z\\\\]+\\)" nil t)
656 (let* ((s (downcase (match-string-no-properties 1)))
659 (puthash k (1+ (gethash k nb 0)) nb))))
661 ;; Creates the result buffer
663 (define-key map "q" 'kill-this-buffer)
666 (setq show-trailing-whitespace nil)
669 ;; Builds a list from the hash table
673 (setq result (cons (cons value (gethash key st)) result)))
676 ;; Sort and display it
679 (if (and (> (car x) 3)
680 ;; No leading backslash and at least four characters
681 (string-match "^[^\\]\\{4,\\}" (cdr x))
683 (insert (number-to-string (car x)) " " (cdr x) "\n")))
684 (sort result (lambda (a b) (> (car a) (car b)))))
686 ;; Adjust the window size and stuff
688 (fit-window-to-buffer (get-buffer-window buf))
690 (set-buffer-modified-p nil))
693 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
695 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
699 (setq ps-print-color-p nil
700 ps-paper-type 'letter
702 ;; ps-top-margin (* 1.75 56.692)
703 ;; ps-left-margin 56.692
704 ;; ps-bottom-margin 56.692
705 ;; ps-right-margin 56.692
707 ;; Simple header. Remove that silly frame shadow.
709 ps-print-header-frame nil
710 ps-header-line-pad 0.3
711 ps-header-font-family 'Courier
712 ps-header-title-font-size '(8.5 . 10)
713 ;; ps-header-font-size '(6 . 7)
714 ps-header-font-size '(10 . 12)
715 ps-font-size '(7 . 8)
718 (ps-put 'ps-header-frame-alist 'back-color 1.0)
719 (ps-put 'ps-header-frame-alist 'shadow-color 1.0)
720 (ps-put 'ps-header-frame-alist 'border-color 0.0)
721 (ps-put 'ps-header-frame-alist 'border-width 0.0)
723 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
725 ;; http://blog.tuxicity.se/elisp/emacs/2010/03/26/rename-file-and-buffer-in-emacs.htm
727 (defun rename-file-and-buffer ()
728 "Renames current buffer and file it is visiting."
730 (let ((name (buffer-name))
731 (filename (buffer-file-name)))
732 (if (not (and filename (file-exists-p filename)))
733 (message "Buffer '%s' is not visiting a file!" name)
734 (let ((new-name (read-file-name "New name: " filename)))
735 (cond ((get-buffer new-name)
736 (message "A buffer named '%s' already exists!" new-name))
738 (rename-file name new-name 1)
739 (rename-buffer new-name)
740 (set-visited-file-name new-name)
741 (set-buffer-modified-p nil)))))))
743 (global-set-key (kbd "C-c r") 'rename-file-and-buffer)
745 (defun ff/non-existing-filename (dir prefix suffix)
746 "Returns a filename of the form DIR/PREFIX[.n].SUFFIX whose file does
749 (f (concat prefix suffix)))
750 (while (file-exists-p (concat dir "/" f))
752 f (concat prefix "." (prin1-to-string n) suffix)))
755 (defun ff/print-buffer-or-region-with-faces (&optional file)
757 ;; I am fed up with spell checking highlights
758 (when (and flyspell-mode
759 ;; (or ispell-minor-mode flyspell-mode)
760 (not (y-or-n-p "The spell checking is on, still print ? ")))
761 (error "Printing cancelled, the spell-checking is on"))
765 (ps-print-region-with-faces (region-beginning) (region-end) file)
767 (ps-print-buffer-with-faces file)))
769 (defun ff/print-to-file (file)
770 "Prints the region if selected or the whole buffer in postscript
775 "PS file: " "/tmp/" nil nil
776 (ff/non-existing-filename
778 (replace-regexp-in-string "[^a-zA-Z0-9_.-]" "_" (file-name-nondirectory
782 (ff/print-buffer-or-region-with-faces file))
784 (defun ff/print-to-printer ()
785 "Prints the region if selected or the whole buffer to a postscript
788 (message "Printing to '%s'" (getenv "PRINTER"))
789 (ff/print-buffer-or-region-with-faces))
791 ;; Can you believe it? There is a "print" key on PC keyboards ...
793 (define-key global-map [(print)] 'ff/print-to-file)
794 (define-key global-map [(shift print)] 'ff/print-to-printer)
796 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
797 ;; Dealing with the laptop battery
798 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
800 (defcustom ff/battery-dir "/sys/class/power_supply/BAT0"
801 "*Where to gather the battery information")
803 (defcustom ff/temperature-file "/sys/class/thermal/thermal_zone0/temp"
804 "*Where to gather the thermal information")
806 (defun ff/file-first-line (file)
808 (insert-file-contents-literally file)
809 (buffer-substring (point-at-bol) (point-at-eol))))
811 (defun ff/battery-percent (prefix)
813 (/ (* 100 (string-to-number (ff/file-first-line (format "%s/%s_now" ff/battery-dir prefix))))
814 (string-to-number (ff/file-first-line (format "%s/%s_full" ff/battery-dir prefix))))
818 (defun ff/laptop-info-string () (interactive)
824 (let ((temp (/ (string-to-number (ff/file-first-line ff/temperature-file)) 1000)))
827 (let ((s (format "%dC " temp)))
828 (if (> temp 70) (propertize s 'face
829 'font-lock-warning-face)
837 (let ((battery-status (ff/file-first-line (concat ff/battery-dir "/status"))))
840 ((string= battery-status "Full") "L")
842 ((string= battery-status "Charging")
843 (format "L%d%%" (max (ff/battery-percent "charge")
844 (ff/battery-percent "energy"))))
846 ((string= battery-status "Discharging")
847 (let* ((c (max (ff/battery-percent "charge")
848 (ff/battery-percent "energy")))
849 (s (format "B%d%%" c)))
850 (if (>= c 20) s (propertize s 'face 'font-lock-warning-face))))
861 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
863 (defun ff/system-info () (interactive)
865 (let ((buf (get-buffer-create "*system info*"))
866 (map (make-sparse-keymap)))
868 (define-key map "q" 'kill-this-buffer)
871 (setq show-trailing-whitespace nil)
874 (let ((highlight nil))
878 (if (setq highlight (not highlight))
880 (with-temp-buffer (apply 'call-process x)
882 'face '(:background "#c0c0ff"))
883 (with-temp-buffer (apply 'call-process x)
889 ("hostname" nil t nil "-v")
891 ("df" nil t nil "-h")
894 ("ssh-add" nil t nil "-l")
897 (goto-char (point-min))
898 (while (re-search-forward "^$" nil t) (backward-delete-char 1))
900 (fit-window-to-buffer (get-buffer-window buf))
902 (set-buffer-modified-p nil)
905 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
906 ;; Make a sound when there is new mail
907 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
909 ;; I do not like sounds anymore
911 ;; (setq ff/already-boinged-for-mail nil)
913 ;; (defun ff/boing-if-new-mail ()
914 ;; (if mail (when (not ff/already-boinged-for-mail)
915 ;; ;; (ff/play-sound-async "~/local/sounds/boing1.wav")
916 ;; ;; (ff/show-unspooled-mails)
917 ;; (setq ff/already-boinged-for-mail t))
918 ;; (setq ff/already-boinged-for-mail nil))
921 ;; (add-hook 'display-time-hook 'ff/boing-if-new-mail)
923 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
925 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
929 display-time-interval 15 ;; Check every 15s
931 display-time-string-forms `(
935 ;; (propertize " mail "
936 ;; 'face 'ff/mail-alarm-face)
940 (propertize (concat 24-hours ":" minutes
945 'face 'ff/date-info-face)
949 ,(if (ff/laptop-info-string)
950 '(concat " " (ff/laptop-info-string)))
954 ;; display-time-format "%b %a %e %H:%M"
955 ;; display-time-mail-face nil
958 ;; Show the time, mail and stuff
961 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
962 ;; Moving through buffers
963 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
965 (defun ff/next-buffer ()
966 "Switches to the next buffer in cyclic order."
968 (let ((buffer (current-buffer)))
969 (switch-to-buffer (other-buffer buffer))
970 (bury-buffer buffer)))
972 (defun ff/prev-buffer ()
973 "Switches to the previous buffer in cyclic order."
975 (let ((list (nreverse (buffer-list)))
977 (while (and (not found) list)
978 (let ((buffer (car list)))
979 (if (and (not (get-buffer-window buffer))
980 (not (string-match "\\` " (buffer-name buffer))))
981 (setq found buffer)))
982 (setq list (cdr list)))
983 (switch-to-buffer found)))
985 (define-key global-map [?\C-x right] 'ff/next-buffer)
986 (define-key global-map [?\C-x left] 'ff/prev-buffer)
988 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
989 ;; There is actually a decent terminal emulator in emacs!
990 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
994 (defun ff/kill-associated-buffer (process str) (interactive)
995 (let ((buffer (process-buffer process)))
996 (kill-buffer buffer))
997 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
999 (defun ff/kill-associated-buffer-and-delete-windows (process str) (interactive)
1000 (let ((buffer (process-buffer process)))
1001 (delete-windows-on buffer)
1002 (kill-buffer buffer))
1003 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
1005 (defun ff/shell-new-buffer (buffername program &rest param)
1006 "Start a terminal-emulator in a new buffer with the shell PROGRAM,
1007 optionally invoked with the parameters PARAM. The process associated
1008 to the shell can be killed without query."
1015 (while (get-buffer (concat "*" bn "*"))
1017 bn (format "%s<%d>" buffername n)))
1019 (set-buffer (apply 'make-term (append (list bn program nil) param)))
1021 (setq show-trailing-whitespace nil)
1023 (message "C-c C-k term-char-mode, C-c C-j term-line-mode. \
1024 In line mode: M-p previous line, M-n next line.")
1026 ;; A standard setup of the face above is not enough, I have to
1027 ;; force them here. Since I have a gray90 background, I like
1032 '((term-green :foreground "green3")
1033 (term-cyan :foreground "cyan3")
1034 (term-default-fg-inv :foreground "gray90" :background "black")
1037 (term-set-escape-char ?\C-x)
1039 ;; I like the shell buffer and windows to be deleted when the
1040 ;; shell process terminates. It's a bit of a mess to acheive this.
1042 (let ((process (get-buffer-process (current-buffer))))
1043 (process-kill-without-query process)
1044 (set-process-sentinel process
1045 ;; 'ff/kill-associated-buffer-and-delete-windows
1046 'ff/kill-associated-buffer
1049 ;; (switch-to-buffer-other-window (concat "*" bn "*"))
1050 (switch-to-buffer (concat "*" bn "*"))
1053 (defcustom ff/default-bash-commands '("ssh")
1054 "*List of commands to be used for completion when invoking a new
1055 bash shell with `ff/bash-new-buffer'.")
1057 (defun ff/bash-new-buffer (universal)
1058 "Starts a bash in a new buffer. When invoked with a universal
1059 argument, asks for a command to execute in that bash shell. The list
1060 of commands in `ff/default-bash-commands' is used for auto-completion"
1064 (let ((cmd (completing-read
1066 (mapcar (lambda (x) (cons x t)) ff/default-bash-commands))))
1067 (ff/shell-new-buffer cmd "/bin/bash" "-c" cmd))
1069 (ff/shell-new-buffer "bash" "/bin/bash")))
1071 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1073 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1075 (setq ;; Always follow links if the file is under version control
1076 vc-follow-symlinks t
1079 (when (load "vc-git" nil t)
1080 (add-to-list 'vc-handled-backends 'GIT))
1082 ;; alarm-vc.el is one of my own scripts, check my web page
1084 (when (ff/load-or-alert "alarm-vc" t)
1085 (setq alarm-vc-mode-exceptions "^VM"))
1087 (when (ff/load-or-alert "git")
1088 (setq git-show-unknown nil)
1091 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1092 ;; Makes .sh and others files executable automagically
1093 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1095 ;; Please consider the security-related consequences of using it
1097 ;; (defun ff/make-shell-scripts-executable (&optional filename)
1098 ;; (setq filename (or filename (buffer-name)))
1099 ;; (when (and (string-match "\\.sh$\\|\\.pl$\\|\\.rb" filename)
1100 ;; (not (file-executable-p filename))
1102 ;; (set-file-modes filename 493)
1103 ;; (message "Made %s executable" filename)))
1105 ;; (add-hook 'after-save-hook 'ff/make-shell-scripts-executable)
1107 (add-hook 'after-save-hook
1108 'executable-make-buffer-file-executable-if-script-p)
1110 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1111 ;; Cool stuff to navigate in emacs-lisp sources
1112 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1116 (defun ff/goto-function-definition (&optional goback)
1117 "Go directly to the definition of the function at point. With
1118 goback argument, go back where we were."
1121 (if (not (and (boundp 'goto-function-history) goto-function-history))
1122 (error "We were nowhere, buddy")
1123 (message "Come back")
1124 (switch-to-buffer (car (car goto-function-history)))
1125 (goto-char (cdr (car goto-function-history)))
1126 (setq goto-function-history (cdr goto-function-history)))
1128 (let ((function (function-called-at-point)))
1130 (let ((location (find-function-search-for-symbol
1132 (symbol-file function))))
1133 (setq goto-function-history
1134 (cons (cons (current-buffer) (point))
1135 (and (boundp 'goto-function-history)
1136 goto-function-history)))
1137 (pop-to-buffer (car location))
1138 (goto-char (cdr location)))))))
1140 (define-key global-map [(meta g)] 'ff/goto-function-definition)
1141 (define-key global-map [(meta G)] (lambda () (interactive)
1142 (ff/goto-function-definition t)))
1144 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1145 ;; The big stuff (bbdb, mailcrypt, etc.)
1146 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1148 ;; Failsafe version if we can't load bbdb
1149 (defun ff/explicit-name (email) email)
1153 (when (ff/load-or-alert "bbdb")
1156 ;; Stop asking (if not t or nil, will not ask)
1157 bbdb-offer-save 'never
1158 ;; I hate when bbdb decides to mess up my windows
1160 ;; I have no problem with bbdb asking me if the sender email
1161 ;; does not match exactly the address we have in the database
1162 bbdb-quiet-about-name-mismatches 0
1163 ;; I have european friends, too
1164 bbdb-north-american-phone-numbers-p nil
1165 ;; To cycle through all possible addresses
1166 bbdb-complete-name-allow-cycling t
1167 ;; Cycle with full names only, not through all net-addresses alone too
1168 bbdb-dwim-net-address-allow-redundancy t
1169 ;; Do not add new addresses automatically
1170 bbdb-always-add-addresses nil
1173 (defface ff/known-address-face
1174 '((t (:foreground "blue2")))
1175 "The face to display known mail identities.")
1177 (defface ff/unknown-address-face
1178 '((t (:foreground "gray50")))
1179 "The face to display unknown mail identities.")
1181 (defun ff/explicit-name (email)
1182 "Returns a string identity for the first address in EMAIL. The
1183 identity is taken from bbdb if possible or from the address itself
1184 with mail-extract-address-components. The suffix \"& al.\" is added if
1185 there are more than one address.
1187 If no bbdb record is found, the name is propertized with the face
1188 ff/unknown-address-face. If a record is found and contains a note
1189 'face, the associated face is used, otherwise
1190 ff/known-address-face is used."
1193 (let* ((data (mail-extract-address-components email))
1196 (record (bbdb-search-simple nil net)))
1201 (propertize (bbdb-record-name record)
1203 (or (cdr (assoc 'face
1204 (bbdb-record-raw-notes record)))
1205 'ff/known-address-face))
1207 (propertize (or (and data (concat "<" net ">"))
1209 'face 'ff/unknown-address-face)
1211 (if (string-match "," (mail-strip-quoted-names email)) " & al.")
1215 (ff/configure-faces '((ff/robot-address-face :foreground "green4")
1216 (ff/personal-address-face :foreground "blue2" :weight 'bold)
1217 (ff/important-address-face :foreground "red3"
1218 ;; :foreground "blue2"
1220 ;; :background "white"
1221 ;; :foreground "green4"
1228 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1229 ;; An encrypted file to put secure stuff (passwords, ...)
1230 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1232 (when (ff/load-or-alert "mailcrypt")
1233 (mc-setversion "gpg")
1234 ;; Keep the passphrase for 10min
1235 (setq mc-passwd-timeout 600
1236 ff/secure-note-file "~/private/secure-notes.gpg")
1239 (defface ff/secure-date
1240 '((t (:background "white" :weight bold)))
1241 "The face to display the dates in the modeline.")
1243 (defun ff/secure-note-add () (interactive)
1246 (let ((b (find-buffer-visiting ff/secure-note-file)))
1247 (and b (switch-to-buffer b)))
1248 (find-file ff/secure-note-file)
1249 ;; Adds a new entry (i.e. date and a bunch of empty lines)
1250 (goto-char (point-min))
1252 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
1257 ;; Colorizes the dates
1260 (goto-char (point-min))
1261 (while (re-search-forward
1262 "^-- [0-9]+ [a-z]+ [0-9]+ [0-9]+:[0-9]+:[0-9]+ -+$"
1264 (add-text-properties
1265 (match-beginning 0) (1+ (match-end 0))
1266 '(face ff/secure-date rear-nonsticky t))))
1268 (set-buffer-modified-p nil)
1269 (setq buffer-undo-list nil)
1272 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1274 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1276 (setq ;; For french, aspell is far better than ispell
1277 ispell-program-name "aspell"
1278 ;; To avoid ispell errors in figure filenames, labels, references.
1279 ;; ispell-tex-skip-alists
1281 ;; (append (car ispell-tex-skip-alists)
1282 ;; '(("\\\\citep" ispell-tex-arg-end) ;; JMLR
1283 ;; ("\\\\cite" ispell-tex-arg-end)
1284 ;; ("\\\\nocite" ispell-tex-arg-end)
1285 ;; ("\\\\includegraphics" ispell-tex-arg-end)
1286 ;; ("\\\\author" ispell-tex-arg-end)
1287 ;; ("\\\\ref" ispell-tex-arg-end)
1288 ;; ("\\\\label" ispell-tex-arg-end)
1290 ;; (cadr ispell-tex-skip-alists))
1292 ;; So that reftex follows the text when moving in the summary
1293 reftex-toc-follow-mode nil
1294 ;; So that reftex visits files to follow
1295 reftex-revisit-to-follow t
1298 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1299 ;; Used in a \includegraphics runs xfig with the corresponding .fig
1300 ;; file or gimp with the corresponding bitmap picture
1301 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1303 (defun ff/run-eps-edition (prefix rules &optional force)
1305 (let ((filename (concat prefix (car (car rules)))))
1306 (if (or force (file-exists-p filename))
1307 (start-process "latex-eps-editor" nil (cdr (car rules)) filename)
1308 (ff/run-eps-edition prefix (cdr rules) force)))
1309 (message "No original file found for %seps" prefix)))
1311 (defcustom ff/xdvi-for-latex-options nil
1312 "*Options to pass to xdvi when invoking `ff/run-viewer'")
1314 (defun ff/run-viewer (universal)
1316 "Starts an editor for the .eps at point (either xfig or gimp,
1317 depending with the original file it can find), or starts xdvi for
1318 the current .tex if no .eps is found at point. When run with a
1319 universal argument starts xfig even if the .fig does not exist"
1323 (if (and (save-excursion
1324 (and (re-search-backward "{" (point-at-bol) t)
1325 (or (re-search-forward "{\\([^{}]*.\\)eps}" (point-at-eol) t)
1326 (re-search-forward "{\\([^{}]*.\\)pdf}" (point-at-eol) t)
1327 (re-search-forward "{\\([^{}]*.\\)pdf_t}" (point-at-eol) t)
1328 (re-search-forward "{\\([^{}]*.\\)png}" (point-at-eol) t)
1329 (re-search-forward "{\\([^{}]*.\\)jpg}" (point-at-eol) t)
1331 (and (<= (match-beginning 1) (point))
1332 (>= (match-end 1) (- (point) 2))))
1334 (ff/run-eps-edition (match-string-no-properties 1)
1337 ("png" . "gimp") ("pgm" . "gimp") ("ppm" . "gimp")
1341 (if (not (and (buffer-file-name) (string-match "\\(.*\\)\.tex$"
1342 (buffer-file-name))))
1343 (message "Not a latex file!")
1344 (condition-case nil (kill-process xdvi-process) (error nil))
1345 (let ((dvi-name (concat (match-string 1 (buffer-file-name)) ".dvi")))
1346 (if (not (file-exists-p dvi-name)) (error "Can not find %s !" dvi-name)
1347 (message "Starting xdvi with %s" dvi-name)
1348 (setq xdvi-process (apply 'start-process
1349 (append '("xdvi-for-latex" nil "xdvi")
1350 ff/xdvi-for-latex-options
1352 (process-kill-without-query xdvi-process))))
1355 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1358 ;; When working on a tex file with other people, I can just change
1359 ;; ff/tex-command in the -*- part of the file so that I don't mess up
1360 ;; other's people configuration.
1362 (defadvice tex-file (around ff/set-my-own-tex-command () activate)
1364 (or (and (boundp 'ff/tex-command)
1369 ;; This is a bit hardcore, but really I can't bear the superscripts in
1370 ;; my emacs window and could not find another way to deactivate them.
1373 (defun tex-font-lock-suscript (pos) ())
1375 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1376 ;; Prevents many errors from beeping and makes the others play a nifty
1378 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1380 (defun ff/ring-bell ()
1381 (unless (memq this-command
1383 abort-recursive-edit
1386 backward-delete-char-untabify
1387 delete-backward-char
1388 minibuffer-complete-and-exit
1389 previous-line next-line
1390 backward-char forward-char
1391 scroll-up scroll-down
1392 enlarge-window-horizontally shrink-window-horizontally
1393 enlarge-window shrink-window
1396 ;; (message "command [%s]" (prin1-to-string this-command))
1397 ;; (ff/play-sound-async "~/local/sounds/short_la.wav")
1400 (setq ring-bell-function 'ff/ring-bell)
1402 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1403 ;; Past the content of the url currently in the kill-ring with
1405 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1407 (defun ff/insert-url (&optional url)
1408 "Downloads an URL with lynx and inserts it after the point."
1409 (interactive "MUrl: ")
1411 (message "Inserting %s" url)
1412 (insert (concat "from: " url "\n\n"))
1413 ;; (call-process "lynx" nil t nil "-nolist" "-dump" url))
1414 (call-process "w3m" nil t nil "-dump" url))
1417 (define-key global-map [(shift mouse-2)]
1418 (lambda () (interactive) (ff/insert-url (current-kill 0))))
1420 ;; lookup-dict is one of my own scripts, check my web page
1422 (when (ff/load-or-alert "lookup-dict" t)
1423 (define-key global-map [(control \?)] 'lookup-dict))
1425 ;; (defun ff/generate-password () (interactive)
1426 ;; (let ((c "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-"))
1427 ;; (nth (random (length c)) c))
1429 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1430 ;; Automatization of things I do often
1431 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1433 (defun ff/snip () (interactive)
1434 (let ((start (condition-case nil (region-beginning) (error (point))))
1435 (end (condition-case nil (region-end) (error (point)))))
1437 (insert "---------------------------- snip snip -------------------------------\n")
1439 (insert "---------------------------- snip snip -------------------------------\n")
1442 (defun ff/start-latex ()
1443 "Adds all that stuff to start a new LaTeX document."
1445 (goto-char (point-min))
1446 (insert "%% -*- mode: latex; mode: reftex; mode: flyspell; coding: utf-8; tex-command: \"pdflatex.sh\" -*-
1448 \\documentclass[12pt]{article}
1449 \\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.5cm,right=2.5cm]{geometry}
1450 \\usepackage[utf8]{inputenc}
1451 \\usepackage{amsmath}
1452 \\usepackage{amssymb}
1453 \\usepackage[pdftex]{graphicx}
1454 \\usepackage{microtype}
1455 \\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue]{hyperref}
1457 \\setlength{\\parindent}{0cm}
1458 \\setlength{\\parskip}{12pt}
1459 \\renewcommand{\\baselinestretch}{1.3}
1461 \\def\\argmax{\\operatornamewithlimits{argmax}}
1462 \\def\\argmin{\\operatornamewithlimits{argmin}}
1464 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1466 \\usepackage[default]{opensans}
1467 \\usepackage{cmbright}
1468 \\renewcommand{\\familydefault}{fos}
1469 \\renewcommand{\\seriesdefault}{l}
1470 \\renewcommand{\\bfdefault}{sb}
1471 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1472 %% The \\todo command
1473 \\newcounter{nbdrafts}
1474 \\setcounter{nbdrafts}{0}
1476 \\newcommand{\\checknbdrafts}{
1477 \\ifnum \\thenbdrafts > 0
1478 \\@latex@warning@no@line{*WARNING* The document contains \\thenbdrafts \\space draft note(s)}
1480 \\newcommand{\\todo}[1]{\\addtocounter{nbdrafts}{1}{\\color{red} #1}}
1482 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1488 (goto-char (point-max))
1495 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1497 (defun ff/add-copyrights ()
1498 "Adds two lines for the (C) at the beginning of current buffer."
1501 (let ((comment-style 'plain))
1503 (goto-char (point-min))
1505 ;; If this is a script, put the copyrights after the first line
1507 (when (re-search-forward "^#!" nil t)
1511 (let ((start (point))
1512 (comment-style 'box))
1516 "\nSTART_IP_HEADER\n"
1518 (when (boundp 'user-full-name)
1519 (concat "\nWritten by " user-full-name "\n"))
1521 (when (boundp 'user-mail-address)
1522 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1527 (comment-region start (point)))
1531 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1533 (defun ff/remove-ip-header () (interactive)
1535 (goto-char (point-min))
1536 (when (and (re-search-forward "START_IP_HEADER" nil t)
1537 (re-search-forward "END_IP_HEADER" nil t))
1541 (defun ff/add-gpl ()
1542 "Adds the GPL statements at the beginning of current buffer."
1544 (let ((comment-style 'box)
1549 ;; This program is free software; you can redistribute it and/or
1550 ;; modify it under the terms of the GNU General Public License
1551 ;; version 2 as published by the Free Software Foundation.
1553 ;; This program is distributed in the hope that it will be useful, but
1554 ;; WITHOUT ANY WARRANTY\; without even the implied warranty of
1555 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1556 ;; General Public License for more details.
1562 This program is free software: you can redistribute it and/or modify
1563 it under the terms of the version 3 of the GNU General Public License
1564 as published by the Free Software Foundation.
1566 This program is distributed in the hope that it will be useful, but
1567 WITHOUT ANY WARRANTY; without even the implied warranty of
1568 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1569 General Public License for more details.
1571 You should have received a copy of the GNU General Public License
1572 along with this program. If not, see <http://www.gnu.org/licenses/>.
1575 (when (boundp 'user-full-name)
1576 (concat "Written by and Copyright (C) " user-full-name "\n"))
1578 (when (boundp 'user-mail-address)
1579 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1587 (goto-char (point-min))
1589 ;; If this is a script, put the gpl after the first line
1590 (when (re-search-forward "^#!" nil t)
1594 (let ((start (point)))
1596 (comment-region start (point)))
1599 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1601 (defun ff/start-c ()
1602 "Adds the header to start a C program."
1604 ;; (beginning-of-buffer)
1610 int main(int argc, char **argv) {
1617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1619 (defun ff/start-c++ ()
1620 "Adds the header to start a C++ program."
1622 ;; (beginning-of-buffer)
1631 using namespace std;
1633 int main(int argc, char **argv) {
1640 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1642 (defun ff/headerize ()
1643 "Adds the #define HEADER_H, etc."
1645 (let ((flag-name (replace-regexp-in-string
1647 (upcase (file-name-nondirectory (buffer-file-name))))))
1648 (goto-char (point-max))
1649 (insert "\n#endif\n")
1650 (goto-char (point-min))
1651 (insert (concat "#ifndef " flag-name "\n"))
1652 (insert (concat "#define " flag-name "\n"))
1656 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1658 (defun ff/start-html ()
1659 "Adds all that stuff to start a new HTML file."
1661 (goto-char (point-min))
1662 (insert "<?xml version=\"1.0\" encoding=\"utf-8\"?>
1663 <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
1665 <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
1668 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
1679 (goto-char (point-max))
1687 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1689 ;; Insert a line showing all the variables written on the current line
1690 ;; and separated by commas
1692 (defun ff/cout-var (arg)
1693 "Invoked on a line with a list of variables names,
1694 it inserts a line which displays their values in cout, or cerr if
1695 the function is invoked with a universal arg"
1697 (let ((line (if arg "cerr" "cout")))
1698 (goto-char (point-at-bol))
1699 ;; Regexp syntax sucks moose balls, honnest. To match '[', just
1700 ;; put it as the first char in the [...] ... This leads to some
1701 ;; obvious things like the following
1702 (while (re-search-forward "\\([][a-zA-Z0-9_.:\(\)]+\\)" (point-at-eol) t)
1704 (concat line " << \" "
1705 (match-string 1) " = \" << " (match-string 1))))
1706 (goto-char (point-at-bol))
1708 (insert line " << endl\;\n")
1709 (indent-region (point-at-bol 0) (point-at-eol 0) nil)
1712 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1714 (defun ff/clean-article ()
1715 "Cleans up an article by removing the leading blanks on each line
1716 and refilling all the paragraphs."
1718 (let ((fill-column 92))
1719 (goto-char (point-min))
1720 (while (re-search-forward "^\\ +" nil t)
1721 (replace-match "" nil nil))
1722 (fill-individual-paragraphs (point-min) (point-max) t)))
1724 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1726 (defun ff/start-slide ()
1728 (insert "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1732 (save-excursion (insert "}{}
1742 (define-key latex-mode-map [(meta S)] 'ff/start-slide)
1743 (define-key latex-mode-map [(control c) (control a)] 'align-current)
1744 (define-key latex-mode-map [(control end)] 'tex-close-latex-block)
1745 (define-key latex-mode-map [(control tab)] 'ispell-complete-word)
1746 (copy-face 'default 'tex-verbatim)
1747 ;; (ff/configure-faces '((tex-verbatim :background "gray95")))
1750 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1752 (defun ff/start-test-code ()
1754 (let ((start (point)))
1756 { // ******************************* START ***************************
1757 #warning Test code added on "
1758 (format-time-string "%04Y %b %02d %02H:%02M:%02S" (current-time))
1761 } // ******************************** END ****************************
1764 (indent-region start (point) nil))
1768 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1770 (defun ff/code-to-html () (interactive)
1772 (narrow-to-region (region-beginning) (region-end))
1773 (replace-string "\"" """ nil (point-min) (point-max))
1774 (replace-string " " " " nil (point-min) (point-max))
1775 (replace-string ">" ">" nil (point-min) (point-max))
1776 (replace-string "<" "<" nil (point-min) (point-max))
1777 (replace-string "\e" "^[" nil (point-min) (point-max))
1778 (replace-string "
\7f" "^?" nil (point-min) (point-max))
1779 (replace-string "
\1f" "^_" nil (point-min) (point-max))
1780 (replace-regexp "$" "<br />" nil (point-min) (point-max))
1784 (defun ff/downcase-html-tags () (interactive)
1786 (beginning-of-buffer)
1787 (while (re-search-forward "<\\([^>]+\\)>" nil t)
1788 (downcase-region (match-beginning 1) (match-end 1)))
1792 ;; If we enter html mode and there is no makefile around, create a
1793 ;; compilation command with tidy (this is cool stuff)
1795 (add-hook 'html-mode-hook
1797 (unless (or (not (buffer-file-name))
1798 (file-exists-p "makefile")
1799 (file-exists-p "Makefile"))
1800 (set (make-local-variable 'compile-command)
1801 (let ((fn (file-name-nondirectory buffer-file-name)))
1802 (format "tidy -utf8 %s > /tmp/%s" fn fn))))))
1804 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1806 (defun ff/count-words-region (beginning end)
1807 "Print number of words in the region.
1808 Words are defined as at least one word-constituent character
1809 followed by at least one character that is not a
1810 word-constituent. The buffer's syntax table determines which
1811 characters these are."
1814 (message "Counting words in region ... ")
1816 (goto-char beginning)
1818 (while (< (point) end)
1819 (re-search-forward "\\w+\\W+")
1820 (setq count (1+ count)))
1821 (cond ((zerop count) (message "The region does NOT have any word."))
1822 ((= 1 count) (message "The region has 1 word."))
1823 (t (message "The region has %d words." count))))))
1825 ;; (add-hook 'html-mode-hook 'flyspell-mode)
1827 (defun ff/tidy-html ()
1828 "Run tidy in on the content of the current buffer, put the result in
1831 (call-process-region (point-min) (point-max)
1834 (list nil (make-temp-file "/tmp/tidy-html."))))
1836 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1838 ;; Create the adequate embryo of a file if it does not exist
1840 (defun ff/start-file () (interactive)
1841 (let ((filename (buffer-file-name)))
1844 (when (string-match "\\.sh$" filename)
1846 (insert "#!/bin/bash\n\nset -e\nset -o pipefail\n\n")
1848 (ff/add-copyrights))
1851 (when (string-match "\\.html$" filename)
1857 (when (string-match "\\.h$" filename)
1868 (when (string-match "\\.c$" filename)
1873 (when (string-match "\.\\(cc\\|cpp\\)$" filename)
1876 (let ((headername (replace-regexp-in-string "\\.\\(cc\\|cpp\\)$" ".h"
1878 (if (file-exists-p headername)
1879 (insert (concat "\n#include \"" (file-name-nondirectory headername) "\"\n"))
1883 (when (string-match "\\.tex$" filename)
1888 (set-buffer-modified-p nil)
1891 (if (>= emacs-major-version 22)
1892 (add-to-list 'find-file-not-found-functions 'ff/start-file)
1893 (add-to-list 'find-file-not-found-hooks 'ff/start-file))
1895 (when (>= emacs-major-version 24)
1896 (define-obsolete-function-alias 'make-local-hook 'ignore "21.1")
1897 (setq send-mail-function 'sendmail-send-it) ;; emacs 24.x stuff
1900 '(diff-added ((default (:background "gray90" :foreground "green4" :weight bold))))
1901 '(diff-removed ((default (:background "gray90" :foreground "red2" :weight bold))))
1902 '(diff-changed ((default (:background "gray90" :foreground "blue" :weight bold))))
1906 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1908 (define-key global-map [f8] 'ff-find-other-file)
1909 (define-key global-map [(shift f8)] (lambda () (interactive) (ff-find-other-file t)))
1911 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1912 ;; Antiword, htmlize and boxquote
1913 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1915 (autoload 'no-word "no-word")
1916 (add-to-list 'auto-mode-alist '("\\.doc\\'" . no-word))
1917 ;; (add-to-list 'auto-mode-alist '("\\.DOC\\'" . no-word))
1919 (autoload 'htmlize-buffer "htmlize" nil t)
1921 (setq boxquote-top-and-tail "------------------")
1922 (autoload 'boxquote-region "boxquote" nil t)
1924 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1925 ;; The compilation hacks
1926 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1928 ;; If we enter c++ mode and there is no makefile around, we create a
1929 ;; make command on the fly for the specific object file
1931 (add-hook 'c++-mode-hook
1933 (unless (or (file-exists-p "makefile") (file-exists-p "Makefile"))
1934 (set (make-local-variable 'compile-command)
1937 (file-name-sans-extension
1938 (file-name-nondirectory buffer-file-name)))))))
1940 ;; <f1> runs the compilation according to the compile-command (and
1941 ;; thus does not ask any confirmation), shows the compilation buffer
1942 ;; during compilation and delete all windows showing the compilation
1943 ;; buffer if the compilation ends with no error
1945 ;; <shift-f1> asks for a compilation command and runs the compilation
1946 ;; but does not restore the window configuration (i.e. the compilation
1947 ;; buffer's window will still be visible, as usual)
1949 ;; <f2> goes to the next compilation error (as C-x ` does on the
1950 ;; standard configuration)
1952 (defun ff/restore-windows-if-no-error (buffer msg)
1953 "Delete the windows showing the compilation buffer if msg
1954 matches \"^finished\"."
1956 (when (string-match "^finished" msg)
1957 ;; (delete-windows-on buffer)
1958 (if (boundp 'ff/window-configuration-before-compilation)
1959 (set-window-configuration ff/window-configuration-before-compilation))
1963 (add-to-list 'compilation-finish-functions 'ff/restore-windows-if-no-error)
1965 (defun ff/fast-compile ()
1966 "Compiles without asking anything."
1968 (let ((compilation-read-command nil))
1969 (setq ff/window-configuration-before-compilation (current-window-configuration))
1970 (compile compile-command)))
1972 (setq compilation-read-command t
1973 compile-command "make -j -k"
1974 compile-history '("make clean" "make DEBUG=yes -j -k" "make -j -k")
1977 (defun ff/universal-compile () (interactive)
1978 (funcall (or (cdr (assoc major-mode
1980 (latex-mode . tex-file)
1981 (html-mode . browse-url-of-buffer)
1982 ;; Here you can add other mode -> compile command
1984 'ff/fast-compile ;; And this is the failsafe
1987 (define-key global-map [f1] 'ff/universal-compile)
1988 (define-key global-map [(shift f1)] 'compile)
1989 (define-key global-map [f2] 'next-error)
1991 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1993 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1995 ;; (when (ff/load-or-alert "flyspell-timer" t)
1996 ;; (add-hook 'flyspell-mode-hook 'flyspell-timer-ensure-idle-timer))
1998 (defun ff/start-flyspell () (interactive)
2001 ;; (flyspell-incorrect :background "#ff0000" :foreground "black")
2002 ;; (flyspell-duplicate :background "#ff9000" :foreground "black")
2003 (flyspell-incorrect :foreground "#ff0000" :weight 'bold)
2004 (flyspell-duplicate :foreground "#ff9000" :weight 'bold)
2006 ;; (flyspell-buffer)
2009 (add-hook 'flyspell-mode-hook 'ff/start-flyspell)
2011 (defun ff/pick-dictionnary () (interactive)
2012 (when (and (boundp 'flyspell-mode) flyspell-mode)
2013 (if (and current-input-method (string-match "latin" current-input-method))
2014 (ispell-change-dictionary "francais")
2015 (ispell-change-dictionary "american"))
2016 ;; (flyspell-buffer)
2020 (defadvice toggle-input-method (after ff/switch-dictionnary nil activate)
2021 (ff/pick-dictionnary))
2023 ;; (add-hook 'message-mode-hook 'auto-fill-mode)
2024 ;; (add-hook 'message-mode-hook 'flyspell-mode)
2026 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2027 ;; Delete all windows which are in the same "column", which means
2028 ;; whose xmin and xmax are bounded by the xmin and xmax of the
2029 ;; currently selected column
2030 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2032 ;; This is from emacs23 ! better than my old ff/delete-other-windows-in-column
2034 (unless (fboundp 'delete-other-windows-vertically)
2036 (defun delete-other-windows-vertically (&optional window)
2037 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
2038 This may be a useful alternative binding for \\[delete-other-windows]
2039 if you often split windows horizontally."
2041 (let* ((window (or window (selected-window)))
2042 (edges (window-edges window))
2044 (while (not (eq (setq w (next-window w 1)) window))
2045 (let ((e (window-edges w)))
2046 (when (and (= (car e) (car edges))
2047 (= (caddr e) (caddr edges)))
2049 (mapc 'delete-window delenda)))
2052 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2054 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2058 (defun ff/entropy (l)
2063 (* (- x) (/ (log x) (log 2)))))
2068 ;; Usefull to deal with results in latex files
2070 (defun ff/round-floats-in-region () (interactive)
2073 (narrow-to-region (region-beginning) (region-end))
2074 (error (thing-at-point 'word)))
2076 (goto-char (point-min))
2077 (while (re-search-forward "[0-9\.]+" nil t)
2078 (let ((value (string-to-number (buffer-substring (match-beginning 0) (match-end 0)))))
2079 (delete-region (match-beginning 0) (match-end 0))
2080 (insert (format "%0.2f" value)))))))
2082 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2084 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2088 (define-key global-map [(shift iso-lefttab)] 'ispell-complete-word)
2089 ;; shift-tab going backward is kind of standard
2090 (define-key Info-mode-map [(shift iso-lefttab)] 'Info-prev-reference)
2092 ;; (define-key global-map [(control x) (control a)] 'auto-fill-mode)
2094 ;; Put back my keys, you thief!
2095 (define-key global-map [(home)] 'beginning-of-buffer)
2096 (define-key global-map [(end)] 'end-of-buffer)
2097 ;; (define-key global-map [(insertchar)] 'overwrite-mode)
2098 (define-key global-map [(delete)] 'delete-char)
2100 ;; Cool shortcuts to move to the end / beginning of block keen
2101 (define-key global-map [(control right)] 'forward-sexp)
2102 (define-key global-map [(control left)] 'backward-sexp)
2104 ;; Wheel mouse moves up and down 2 lines (and DO NOT BEEP when we are
2105 ;; out of the buffer)
2107 (define-key global-map [mouse-4]
2108 (lambda () (interactive) (condition-case nil (scroll-down 2) (error nil))))
2109 (define-key global-map [mouse-5]
2110 (lambda () (interactive) (condition-case nil (scroll-up 2) (error nil))))
2112 ;; with shift it goes faster
2113 (define-key global-map [(shift mouse-4)]
2114 (lambda () (interactive) (condition-case nil (scroll-down 50) (error nil))))
2115 (define-key global-map [(shift mouse-5)]
2116 (lambda () (interactive) (condition-case nil (scroll-up 50) (error nil))))
2118 ;; Meta-? shows the properties of the character at point
2119 (define-key global-map [(meta ??)]
2120 (lambda () (interactive)
2121 (message (prin1-to-string (text-properties-at (point))))))
2123 ;; Compiles the latex file in the current buffer
2125 (setq tex-start-commands "\\input")
2126 (define-key global-map [f3] 'tex-file)
2127 (define-key global-map [(shift f3)] 'tex-bibtex-file)
2129 ;; To run xdvi on the dvi associated to the .tex in the current
2130 ;; buffer, and to edit the .fig or bitmap image used to generate the
2133 (define-key global-map [f4] 'ff/run-viewer)
2135 ;; Closes the current \begin{}
2137 (when (ff/load-or-alert "longlines")
2139 (setq longlines-show-hard-newlines t
2140 longlines-auto-wrap t
2141 ;; longlines-show-effect #("|\n" 0 2 (face escape-glyph))
2142 ;; longlines-show-effect #("∴\n" 0 2 (face escape-glyph))
2143 longlines-show-effect #("•\n" 0 2 (face escape-glyph))
2144 ;; longlines-show-effect #("↵\n" 0 2 (face escape-glyph))
2147 ;; (defun ff/auto-longlines ()
2148 ;; (when (save-excursion
2149 ;; (goto-char (point-min))
2150 ;; (re-search-forward "^.\\{81,\\}$" nil t))
2152 ;; (message "Switched on the lonlines mode automatically")
2155 ;; (add-hook 'latex-mode-hook 'ff/auto-longlines)
2159 ;; Meta-/ remaped (completion)
2161 (define-key global-map [(shift right)] 'dabbrev-expand)
2162 (define-key global-map [(meta =)] 'dabbrev-expand)
2164 ;; Change the current window.
2166 (defun ff/next-same-frame-window () (interactive)
2167 (select-window (next-window (selected-window)
2168 (> (minibuffer-depth) 0)
2171 (defun ff/previous-same-frame-window () (interactive)
2172 (select-window (previous-window (selected-window)
2173 (> (minibuffer-depth) 0)
2176 (define-key global-map [(shift prior)] 'ff/next-same-frame-window)
2177 (define-key global-map [(shift next)] 'ff/previous-same-frame-window)
2179 (define-key global-map [(control })] 'enlarge-window-horizontally)
2180 (define-key global-map [(control {)] 'shrink-window-horizontally)
2181 (define-key global-map [(control \")] 'enlarge-window)
2182 (define-key global-map [(control :)] 'shrink-window)
2184 ;; (define-key global-map [(control shift prior)] 'next-multiframe-window)
2185 ;; (define-key global-map [(control shift next)] 'previous-multiframe-window)
2187 ;; I have two screens sometime!
2189 (define-key global-map [(meta next)] 'other-frame)
2190 (define-key global-map [(meta prior)] (lambda () (interactive) (other-frame -1)))
2192 (define-key global-map [(shift home)] 'delete-other-windows-vertically)
2194 ;; (define-key global-map [(control +)] 'enlarge-window)
2195 ;; (define-key global-map [(control -)] 'shrink-window)
2197 ;; Goes to next/previous buffer
2199 (define-key global-map [(control prior)] 'ff/next-buffer)
2200 (define-key global-map [(control next)] 'ff/prev-buffer)
2202 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2203 ;; If M-. on a symbol, show where it is defined in another window
2204 ;; without giving focus, cycle if repeated.
2205 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2207 (when (ff/load-or-alert "etags")
2209 (defun ff/find-tag-nofocus () (interactive)
2210 "Show in another window the definition of the current tag"
2211 (let ((tag (find-tag-default)))
2212 (display-buffer (find-tag-noselect tag (string= tag last-tag)))
2213 (message "Tag %s" tag)
2217 (define-key global-map [(meta .)] 'ff/find-tag-nofocus)
2220 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2221 ;; Destroys the current buffer and its window if it's not the only one
2222 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2224 (defcustom ff/kill-this-buffer-and-delete-window-exceptions ""
2225 "*Regexp matching the buffer names which have to be kept when using
2226 `ff/kill-this-buffer-and-delete-window'.")
2228 (defun ff/kill-this-buffer-and-delete-window (universal)
2229 "Unless its name matches
2230 `ff/kill-this-buffer-and-delete-window-exceptions', kills the
2231 current buffer and deletes the current window if it's not the
2232 only one in the frame. If the buffer has to be kept, go to the
2233 next one. With universal argument, kill all killable buffers."
2236 (let ((nb-killed 0))
2238 (unless (string-match ff/kill-this-buffer-and-delete-window-exceptions
2241 (setq nb-killed (1+ nb-killed))
2244 (message "Killed %d buffer%s" nb-killed (if (> nb-killed 1) "s" "")))
2245 (if (string-match ff/kill-this-buffer-and-delete-window-exceptions (buffer-name))
2247 (kill-this-buffer)))
2248 ;; (unless (one-window-p t) (delete-window))
2251 (define-key global-map [(control backspace)] 'ff/kill-this-buffer-and-delete-window)
2252 ;; (define-key calc-mode-map [(control backspace)] 'calc-quit)
2255 (setq ff/kill-this-buffer-and-delete-window-exceptions
2256 "^ \\|\\*Messages\\*\\|\\*scratch\\*\\|\\*Group\\*\\|\\*-jabber-\\*\\|\\*-jabber-process-\\*\\|\\*media\\*")
2258 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2260 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2262 (defun ff/elisp-debug-on ()
2263 "Switches `debug-on-error' and `debug-on-quit'."
2266 (setq debug-on-error nil
2268 (setq debug-on-error t
2271 (message "elisp debug on")
2272 (message "elisp debug off")))
2274 (defun ff/create-dummy-buffer (&optional universal) (interactive "P")
2275 (find-file (concat "/tmp/" (ff/non-existing-filename "/tmp/" "dummy" "")))
2277 (if universal (ff/insert-url (current-kill 0)))
2278 (message "New dummy text-mode buffer"))
2280 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2281 ;; Recentf to keep a list of recently visited files. I use it
2282 ;; exclusively with my selector.el
2283 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2287 ;; If we just check for file-symlink-p, everytime we start emacs it
2288 ;; will check all the remote files listed in recentf-list, so we check
2289 ;; that they are not remote first
2290 (defun ff/file-not-remote-but-symlink (filename)
2291 (and (not (file-remote-p filename)) (file-symlink-p filename)))
2293 (setq recentf-exclude (append recentf-exclude
2295 ff/file-not-remote-but-symlink
2296 "enotes$" "secure-notes$" "media-playlists$"
2298 "svn-commit.tmp$" ".git/COMMIT_EDITMSG$"
2299 "\.bbl$" "\.aux$" "\.toc$"
2301 recentf-max-saved-items 1000
2302 recentf-save-file (concat ff/emacs-dir "/recentf")
2305 (when (boundp 'recentf-keep) (add-to-list 'recentf-keep 'file-remote-p))
2309 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2310 ;; My front-end to mplayer
2311 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2313 ;; (ff/compile-when-needed "media/mplayer")
2314 ;; (ff/compile-when-needed "media")
2316 (when (ff/load-or-alert "media")
2318 (unless window-system
2321 (media/mode-string-face
2322 :foreground "blue4" :weight 'bold)
2324 (media/current-tune-face
2325 :foreground "black" :background "yellow" :weight 'normal)
2327 (media/instant-highlight-face
2328 :foreground "black" :background "orange" :weight 'normal)
2332 (define-key global-map [(meta \\)] 'media)
2334 (setq media/expert t
2335 media/add-current-song-to-interrupted-when-killing t
2336 media/duration-to-history 30
2337 media/history-size 1000
2338 media/playlist-file (concat ff/emacs-dir "/media-playlists")
2339 media/mplayer/args '(
2343 "-subfont-osd-scale" "3"
2344 ;; "-stop-xscreensaver"
2347 media/mplayer/timing-request-period 1.0
2351 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2353 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2355 ;; selector.el is one of my own scripts, check my web page
2357 (when (ff/load-or-alert "selector" t)
2358 ;; (define-key global-map [(shift return)] 'selector/quick-move-in-buffer)
2359 (define-key global-map [(control x) (control b)] 'selector/switch-buffer)
2361 (defun ff/visit-debpkg-file (&optional regexp)
2362 "This function lists all the files found with dpkg -S and
2363 proposes to visit them."
2364 (interactive "sPattern: ")
2370 (cons (selector/filename-to-string s) s))
2372 (shell-command-to-string (concat "dpkg -S " regexp " | awk '{print $2}'"))))
2375 "*selector find-file*"
2379 (add-hook 'selector/mode-hook (lambda () (setq truncate-lines t)))
2381 (defun ff/selector-insert-record-callback (r)
2382 (bbdb-display-records (list r))
2383 ;; Weird things will happen if you kill the buffer from which you
2384 ;; invoked ff/selector-mail-from-bbdb
2385 (insert (car (elt r 6)))
2388 (defun ff/selector-compose-mail-callback (r)
2389 (vm-compose-mail (car (elt r 6)))
2392 (defun ff/selector-mail-from-bbdb () (interactive)
2395 (lambda (r) (cons (concat (elt r 0)
2403 (if (string= mode-name "Mail")
2404 'ff/selector-insert-record-callback
2405 'ff/selector-compose-mail-callback)
2410 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2411 ;; My script to automatically count the number of words and characters
2412 ;; between two markers
2414 (ff/load-or-alert "text-counters.el")
2416 ;; Display them in the modeline when in text-mode
2418 (add-hook 'text-mode-hook 'tc/add-text-counters-in-modeline)
2420 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2421 ;; A function to remove temporary alarm windows
2422 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2424 (defcustom ff/annoying-windows-regexp
2425 "\\*Messages\\*\\|\\*compilation\\*\\|\\*tex-shell\\*\\|\\*Help\\*\\|\\*info\\*\\|\\*Apropos\\*\\|\\*BBDB\\*\\|\\*.*-diff\\*"
2426 "The regexp matching the windows to be deleted by `ff/delete-annoying-windows'"
2429 (defun ff/delete-annoying-windows ()
2430 "Close all the windows showing buffers whose names match
2431 `ff/annoying-windows-regexp'."
2433 (when ff/annoying-windows-regexp
2435 (when (and (not (one-window-p w))
2436 (string-match ff/annoying-windows-regexp
2437 (buffer-name (window-buffer w))))
2441 (message "Removed annoying windows")
2445 (setq ff/annoying-windows-regexp
2446 (concat ff/annoying-windows-regexp
2447 "\\|\\*unspooled mails\\*\\|\\*enotes alarms\\*\\|\\*system info\\*"))
2449 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2450 ;; Some handy functions
2451 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2453 (defun ff/twin-horizontal-current-buffer () (interactive)
2454 (delete-other-windows)
2455 (split-window-horizontally)
2459 (defun ff/twin-vertical-current-buffer () (interactive)
2460 (delete-other-windows)
2461 (split-window-vertically)
2465 (defun ff/flyspell-mode (arg) (interactive "p")
2466 (if flyspell-mode (flyspell-mode -1)
2471 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2473 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2475 (defun ff/move-region-to-fridge () (interactive)
2476 "Cut the current region, paste it in a file called ./fridge
2477 with a time tag, and save this file"
2478 (unless (use-region-p) (error "No region selected"))
2479 (let ((bn (file-name-nondirectory (buffer-file-name))))
2480 (kill-region (region-beginning) (region-end))
2481 (with-current-buffer (find-file-noselect "fridge")
2482 (goto-char (point-max))
2484 (insert "######################################################################\n")
2486 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
2492 (message "Region moved to fridge")
2497 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2498 ;; My own keymap mapped to C-`
2499 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2501 (setq ff/map (make-sparse-keymap))
2502 (define-key global-map [(control \`)] ff/map)
2504 (unless window-system
2505 ;; (define-key global-map [(control @)] ff/map)
2506 (define-key global-map [(meta O) \`] ff/map)
2509 (define-key esc-map "`" ff/map)
2511 (defun ff/git-status (&optional dir) (interactive)
2512 (if (buffer-file-name)
2513 (git-status (file-name-directory (buffer-file-name)))
2514 (error "No file attached to this buffer")))
2516 (defun ff/insert-date () (interactive)
2517 ;; (insert (format-time-string "\n * %Y %b %d %H:%M:%S\n\n" (current-time)))
2518 ;; (insert (format-time-string "%Y %b %d %H:%M:%S" (current-time)))
2519 ;; (insert (format-time-string "%d.%m.%y" (current-time)))
2520 (insert (format-time-string "%d.%m.%Y" (current-time)))
2523 (define-key ff/map [(control g)] 'ff/git-status)
2524 (define-key ff/map [(control w)] 'server-edit)
2525 (define-key ff/map [(control d)] 'ff/elisp-debug-on)
2526 ;; (define-key ff/map "d" 'diary)
2527 (define-key ff/map "d" 'ff/insert-date)
2528 (define-key ff/map [(control \`)] 'ff/bash-new-buffer)
2529 (define-key ff/map [(control n)] 'enotes/show-all-notes)
2530 (define-key ff/map [(control s)] 'ff/secure-note-add)
2531 (define-key ff/map [(control t)] 'ff/start-test-code)
2532 (define-key ff/map [(control q)] 'ff/create-dummy-buffer)
2533 (define-key ff/map [(control a)] 'auto-fill-mode)
2534 (define-key ff/map [(control i)] 'ff/system-info)
2535 (define-key ff/map "w" 'ff/word-occurences)
2536 (define-key ff/map [(control c)] 'calendar)
2537 ;; (define-key ff/map [(control c)] (lambda () (interactive) (save-excursion (calendar))))
2538 (define-key ff/map [(control l)] 'goto-line)
2539 (define-key ff/map "l" 'longlines-mode)
2540 (define-key ff/map [(control o)] 'selector/quick-pick-recent)
2541 (define-key ff/map "s" 'selector/quick-move-in-buffer)
2542 (define-key ff/map "S" 'selector/search-sentence)
2543 (define-key ff/map "t" (lambda () (interactive) (find-file "~/private/TODO.txt")))
2544 (define-key ff/map "h" 'ff/tidy-html)
2545 (define-key ff/map "c" 'ff/count-char)
2546 (define-key ff/map [(control p)] 'ff/print-to-file)
2547 (define-key ff/map "P" 'ff/print-to-printer)
2548 (define-key ff/map [(control b)] 'bbdb)
2549 (define-key ff/map "m" 'ff/selector-mail-from-bbdb)
2550 (define-key ff/map [(control m)] 'woman)
2551 (define-key ff/map "b" 'bookmark-jump)
2552 (define-key ff/map [(control =)] 'calc)
2553 (define-key ff/map [(control shift b)]
2554 (lambda () (interactive)
2557 (define-key ff/map "f" 'ff/move-region-to-fridge)
2558 (define-key ff/map [(control f)] 'ff/flyspell-mode)
2560 (define-key ff/map [?\C-0] 'ff/delete-annoying-windows)
2561 (define-key ff/map "1" 'delete-other-windows)
2562 (define-key ff/map [?\C-1] 'delete-other-windows)
2563 (define-key ff/map "2" 'ff/twin-vertical-current-buffer)
2564 (define-key ff/map [?\C-2] 'ff/twin-vertical-current-buffer)
2565 (define-key ff/map "3" 'ff/twin-horizontal-current-buffer)
2566 (define-key ff/map [?\C-3] 'ff/twin-horizontal-current-buffer)
2568 (define-key ff/map " " 'delete-trailing-whitespace)
2570 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2571 ;; Hacks so that all keys are functionnal in xterm and through ssh.
2572 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2574 (unless window-system
2576 ;; One day I will understand these clipboard business. Until then,
2577 ;; so that it works in xterm (yes), let's use xclip. This is a bit
2580 ;; (defun ff/yank-with-xclip (&optional arg)
2581 ;; "Paste the content of the X clipboard with the xclip
2582 ;; command. Without ARG converts some of the '\\uxxxx' characters."
2583 ;; (interactive "P")
2584 ;; (with-temp-buffer
2585 ;; (shell-command "xclip -o" t)
2587 ;; (mapc (lambda (x) (replace-string (concat "\\u" (car x)) (cdr x) nil (point-min) (point-max)))
2588 ;; '(("fffd" . "??")
2599 ;; (kill-ring-save (point-min) (point-max)))
2603 ;; (define-key global-map [(meta y)] 'ff/yank-with-xclip)
2605 ;; (set-terminal-coding-system 'iso-latin-1)
2606 ;; (set-terminal-coding-system 'utf-8)
2608 ;; I have in my .Xressource
2610 ;; XTerm.VT100.translations: #override\n\
2611 ;; <Btn4Down>,<Btn4Up>:scroll-back(2,line)\n\
2612 ;; <Btn5Down>,<Btn5Up>:scroll-forw(2,line)\n\
2613 ;; Ctrl<Btn4Down>,Ctrl<Btn4Up>:scroll-back(1,page)\n\
2614 ;; Ctrl<Btn5Down>,Ctrl<Btn5Up>:scroll-forw(1,page)\n\
2615 ;; Shift<Btn4Down>,Shift<Btn4Up>:scroll-back(1,halfpage)\n\
2616 ;; Shift<Btn5Down>,Shift<Btn5Up>:scroll-forw(1,halfpage)\n\
2617 ;; Alt<KeyPress>:insert-eight-bit()\n\
2618 ;; !Shift<Key>BackSpace: string("
\7f")\n\
2619 ;; Ctrl<Key>BackSpace: string("\eOZ")\n\
2620 ;; Shift<Key>Prior: string("\e[5;2~")\n\
2621 ;; Shift<Key>Next: string("\e[6;2~")\n\
2622 ;; Shift Ctrl<Key>]: string("\eO}")\n\
2623 ;; Shift Ctrl<Key>[: string("\eO{")\n\
2624 ;; Shift Ctrl<Key>/: string("\eO?")\n\
2625 ;; Ctrl<Key>/: string("\eO/")\n\
2626 ;; Shift Ctrl<Key>=: string("\eO+")\n\
2627 ;; Ctrl<Key>=: string("\eO=")\n\
2628 ;; Shift Ctrl<Key>;: string("\eO:")\n\
2629 ;; Ctrl<Key>;: string("\eO;")\n\
2630 ;; Shift Ctrl<Key>`: string("\eO~")\n\
2631 ;; Ctrl<Key>`: string("\eO`")\n\
2632 ;; Shift Ctrl<Key>': string("\eO\\\"")\n\
2633 ;; Ctrl<Key>': string("\eO'")\n\
2634 ;; Shift Ctrl<Key>.: string("\eO>")\n\
2635 ;; Ctrl<Key>.: string("\eO.")\n\
2636 ;; Shift Ctrl<Key>\\,: string("\eO<")\n\
2637 ;; Ctrl<Key>\\,: string("\eO,")
2639 (define-key function-key-map "\e[2~" [insert])
2641 (define-key function-key-map "\e[Z" [S-iso-lefttab])
2643 (define-key function-key-map "\e[1;2A" [S-up])
2644 (define-key function-key-map "\e[1;2B" [S-down])
2645 (define-key function-key-map "\e[1;2C" [S-right])
2646 (define-key function-key-map "\e[1;2D" [S-left])
2647 (define-key function-key-map "\e[1;2F" [S-end])
2648 (define-key function-key-map "\e[1;2H" [S-home])
2650 (define-key function-key-map "\e[2;2~" [S-insert])
2651 (define-key function-key-map "\e[5;2~" [S-prior])
2652 (define-key function-key-map "\e[6;2~" [S-next])
2654 (define-key function-key-map "\e[1;2P" [S-f1])
2655 (define-key function-key-map "\e[1;2Q" [S-f2])
2656 (define-key function-key-map "\e[1;2R" [S-f3])
2657 (define-key function-key-map "\e[1;2S" [S-f4])
2658 (define-key function-key-map "\e[15;2~" [S-f5])
2659 (define-key function-key-map "\e[17;2~" [S-f6])
2660 (define-key function-key-map "\e[18;2~" [S-f7])
2661 (define-key function-key-map "\e[19;2~" [S-f8])
2662 (define-key function-key-map "\e[20;2~" [S-f9])
2663 (define-key function-key-map "\e[21;2~" [S-f10])
2665 (define-key function-key-map "\e[1;5A" [C-up])
2666 (define-key function-key-map "\e[1;5B" [C-down])
2667 (define-key function-key-map "\e[1;5C" [C-right])
2668 (define-key function-key-map "\e[1;5D" [C-left])
2669 (define-key function-key-map "\e[1;5F" [C-end])
2670 (define-key function-key-map "\e[1;5H" [C-home])
2672 (define-key function-key-map "\e[2;5~" [C-insert])
2673 (define-key function-key-map "\e[5;5~" [C-prior])
2674 (define-key function-key-map "\e[6;5~" [C-next])
2676 (define-key function-key-map "\e[1;9A" [M-up])
2677 (define-key function-key-map "\e[1;9B" [M-down])
2678 (define-key function-key-map "\e[1;9C" [M-right])
2679 (define-key function-key-map "\e[1;9D" [M-left])
2680 (define-key function-key-map "\e[1;9F" [M-end])
2681 (define-key function-key-map "\e[1;9H" [M-home])
2683 (define-key function-key-map "\e[2;9~" [M-insert])
2684 (define-key function-key-map "\e[5;9~" [M-prior])
2685 (define-key function-key-map "\e[6;9~" [M-next])
2687 ;; The following ones are not standard
2689 (define-key function-key-map "\eO}" (kbd "C-}"))
2690 (define-key function-key-map "\eO{" (kbd "C-{"))
2691 (define-key function-key-map "\eO?" (kbd "C-?"))
2692 (define-key function-key-map "\eO/" (kbd "C-/"))
2693 (define-key function-key-map "\eO:" (kbd "C-:"))
2694 (define-key function-key-map "\eO;" (kbd "C-;"))
2695 (define-key function-key-map "\eO~" (kbd "C-~"))
2696 (define-key function-key-map "\eO`" (kbd "C-\`"))
2697 (define-key function-key-map "\eO\"" (kbd "C-\""))
2698 (define-key function-key-map "\eO|" (kbd "C-|"))
2699 (define-key function-key-map "\eO'" (kbd "C-'"))
2700 (define-key function-key-map "\eO>" (kbd "C->"))
2701 (define-key function-key-map "\eO." (kbd "C-."))
2702 (define-key function-key-map "\eO<" (kbd "C-<"))
2703 (define-key function-key-map "\eO," (kbd "C-,"))
2704 (define-key function-key-map "\eO-" (kbd "C--"))
2705 (define-key function-key-map "\eO=" (kbd "C-="))
2706 (define-key function-key-map "\eO+" (kbd "C-+"))
2708 (define-key function-key-map "\eOZ" [C-backspace])
2710 (define-key minibuffer-local-map "
\10" 'previous-history-element)
2711 (define-key minibuffer-local-map "
\ e" 'next-history-element)
2713 ;; (define-key global-map [(alt prior)] 'ff/prev-buffer)
2714 ;; (define-key global-map [(alt next)] 'ff/next-buffer)
2718 ;; I am fed up with Alt-Backspace in the minibuffer erasing the
2719 ;; content of the kill-ring
2721 (defun ff/backward-delete-word (arg)
2722 "Delete characters forward until encountering the end of a word, but do not put them in the kill ring.
2723 With argument ARG, do this that many times."
2725 (delete-region (point) (progn (forward-word (- arg)) (point))))
2727 (define-key minibuffer-local-map
2728 [remap backward-kill-word] 'ff/backward-delete-word)
2730 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2732 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2734 ;; Where to save the bookmarks and where is bbdb
2736 (setq bookmark-default-file (concat ff/emacs-dir "/bmk")
2737 bbdb-file "~/private/bbdb"
2738 custom-file (concat ff/emacs-dir "/custom"))
2740 ;; enotes.el is one of my own scripts, check my web page
2742 (when (ff/load-or-alert "enotes" t)
2743 (setq enotes/file "~/private/enotes"
2744 enotes/show-help nil
2745 enotes/full-display nil
2746 enotes/default-time-fields "9:30")
2749 ;; (add-hook 'enotes/alarm-hook
2750 ;; (lambda () (ff/play-sound-async "~/local/sounds/three_notes2.wav")))
2753 ;; (when (ff/load-or-alert "goto-last-change.el")
2754 ;; (define-key global-map [(control x) (control a)] 'goto-last-change))
2756 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2757 ;; My private stuff (email adresses, mail filters, etc.)
2758 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2760 (ff/load-or-alert "~/private/emacs.perso.el" t)
2762 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2764 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2766 ;; Runs in server mode, so that emacsclient works
2769 (defun ff/raise-frame-and-give-focus ()
2772 (x-focus-frame (selected-frame))
2773 (set-mouse-pixel-position (selected-frame) 4 4)
2776 ;; Raises the window when the server is invoked
2778 (add-hook 'server-switch-hook 'ff/raise-frame-and-give-focus)