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 ;; (package-initialize)
38 (set-default-font "Bitstream vera sans mono-12")
39 ;; (set-default-font "Liberation Mono-13")
40 ;; (set-default-font "DejaVu sans mono 15")
41 ;; (set-default-font "Droid sans mono 13")
42 ;; (set-default-font "Opensans 10")
44 (when (fboundp 'horizontal-scroll-bar-mode)
45 (horizontal-scroll-bar-mode -1))
47 ;; This is where I put most of my emacs-related files
48 (setq ff/emacs-dir "~/private/emacs")
49 (unless (file-exists-p ff/emacs-dir)
50 (mkdir ff/emacs-dir t))
52 ;; Give the focus to the emacs window if we are under a windowing
56 ;; (x-focus-frame nil)
57 (set-mouse-pixel-position (selected-frame) 4 4))
59 ;; Where I keep my own scripts
61 (add-to-list 'load-path "~/sources/gpl/elisp")
62 (add-to-list 'load-path "~/sources/elisp")
63 (add-to-list 'load-path "~/local/elisp")
65 ;; No, I do not like menus
69 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 0)))
70 ;; (when (functionp 'fringe-mode) (fringe-mode '(0 . 1)))
71 (when (functionp 'fringe-mode) (fringe-mode 10))
73 ;; And I do not like scrollbar neither
74 (when (functionp 'scroll-bar-mode) (scroll-bar-mode -1))
76 ;; Make all "yes or no" prompts be "y or n" instead
77 (fset 'yes-or-no-p 'y-or-n-p)
79 ;; The space bar acting as "yes" has been several times really
81 (define-key query-replace-map (kbd "SPC") nil)
83 ;; Show the matching parenthesis and do it immediately, we are in a
85 (setq show-paren-delay 0)
88 ;; use colorization for all modes
89 (global-font-lock-mode t)
91 (setq font-lock-maximum-decoration 3
92 ;;'((latex-mode . 2) (t . 2))
95 ;; Activate the dynamic completion of buffer names
99 ;; Save the minibuffer history
100 (setq savehist-file (concat ff/emacs-dir "/savehist"))
101 (when (functionp 'savehist-mode) (savehist-mode 1))
103 ;; And allow minibuffer recursion
104 (setq enable-recursive-minibuffers t)
105 (minibuffer-depth-indicate-mode 1)
107 ;; I do not like tooltips
108 (when (functionp 'tooltip-mode) (tooltip-mode nil))
110 ;; Activate the dynamic completion in the mini-buffer
113 ;; (setq highlight-current-line-globally t
114 ;; highlight-current-line-ignore-regexp "Faces\\|Colors\\| \\*Mini\\|\\*media\\|INBOX")
116 ;; (highlight-current-line-minor-mode 1)
117 ;; (highlight-current-line-set-bg-color "gray75")
119 (defun ff/compile-when-needed (name)
120 "Compiles the given file only if needed. Adds .el if required, and
121 uses `load-path' to find it."
122 (if (not (string-match "\.el$" name))
123 (ff/compile-when-needed (concat name ".el"))
125 (let* ((src (concat dir "/" name)))
126 (when (file-newer-than-file-p src (concat src "c"))
127 (if (let ((byte-compile-verbose nil))
129 (byte-compile-file src)
131 (message (format "Compiled %s" src ))
132 (message (format "Failed compilation of %s" src))))))
135 ;; This is useful when using the same .emacs in many places
137 (defun ff/load-or-alert (name &optional compile-when-needed)
138 "Tries to load the specified file and insert a warning message in a
139 load-warning buffer in case of failure."
141 (when compile-when-needed (ff/compile-when-needed name))
143 (if (load name t nil) t
144 (let ((buf (get-buffer-create "*loading warnings*")))
147 (insert (propertize "Warning:" 'face 'font-lock-warning-face) " could not load '" name "'\n")
148 (fit-window-to-buffer (get-buffer-window buf))
149 (set-buffer-modified-p nil))
152 ;; This is the default in emacs 22.1 and later
153 ;; (auto-compression-mode 1)
155 ;; make emacs use the clipboard so that copy/paste works for other
156 ;; x-programs. I have no clue how all that clipboard thing works.
158 ;; (setq x-select-enable-clipboard t)
159 ;; (setq interprogram-paste-function 'x-cut-buffer-or-selection-value)
160 ;; (setq x-select-enable-primary t)
161 ;; (setq x-select-enable-clipboard t)
162 ;; (global-set-key "\C-y" 'clipboard-yank)
168 ;; avoid GC as much as possible
169 gc-cons-threshold 2500000
171 ;; no startup message
172 inhibit-startup-screen t
174 ;; no message in the scratch buffer
175 initial-scratch-message nil
177 ;; do not fill my buffers, you fool
178 next-line-add-newlines nil
180 ;; keep the window focused on the messages during compilation
181 compilation-scroll-output t
183 ;; Keep the highlight on the compilation error
184 next-error-highlight t
186 ;; blink the screen instead of beeping
189 ;; take the CR when killing a line
192 ;; I prefer to move between lines as defined in the buffer, not
196 ;; I comment empty lines, too (does not seem to work, though)
197 comment-empty-lines t
199 ;; We want long lines to be truncated instead of displayed on several lines
201 ;; Show all lines, even if the window is not as large as the frame
202 ;; truncate-partial-width-windows nil
203 ;; truncate-partial-width-windows t
205 ;; Do not keep tracks of the autosaved files
206 auto-save-list-file-prefix nil
208 ;; Show me empty lines at the end of the buffer
209 default-indicate-empty-lines t
211 ;; Show me the region until I do something on it
212 transient-mark-mode t
214 ;; Do not color stuff which are clickable when hovering over it
217 ;; Don't bother me with questions even if "unsafe" local variables
219 enable-local-variables :all
221 ;; I have no problem with small windows
224 ;; I am not a fan of develock
225 develock-auto-enable nil
227 ;; I do not like women to open windows
228 woman-use-own-frame nil
230 ;; I am not that paranoid, contrary to what you think
231 epa-file-cache-passphrase-for-symmetric-encryption t
232 ;; And I like ascii files
235 ;; tramp-default-method "ssh"
236 tramp-default-method "scp"
238 ;; I have no problem with files having their own local variables
241 mail-from-style 'angles
242 browse-url-mozilla-program "firefox"
244 mc-use-default-recipients t
246 ;; browse-url-new-window-flag t
248 ;; I do not like compilation to automatically split the active window
249 ;; vertically, even when the said window is very wide
250 split-height-threshold 0
251 split-width-threshold nil
258 temporary-file-directory "/tmp/"
259 vc-make-backup-files t
260 backup-directory-alist '((".*" . "~/misc/emacs.backups/"))
261 version-control t ;; Use backup files with numbers
264 delete-old-versions t
265 backup-by-copying-when-linked t
268 (setq tramp-backup-directory-alist backup-directory-alist)
270 (setq user-emacs-directory "~/misc/emacs.d/")
273 abbrev-file-name (concat user-emacs-directory "abbrev_defs")
274 server-auth-dir (concat user-emacs-directory "server/")
275 custom-theme-directory user-emacs-directory
278 ;; Stop this crazy blinking cursor
279 (blink-cursor-mode 0)
281 ;; (setq blink-cursor-delay 0.05
282 ;; blink-cursor-blinks 0
283 ;; blink-cursor-interval 0.25)
285 ;; (set-terminal-coding-system 'utf-8)
287 ;; (unless window-system
288 ;; (xterm-mouse-mode 1)
289 ;; (if (string= (getenv "TERM") "xterm-256color")
290 ;; (ff/load-or-alert "xterm-256color" t))
295 ;; Show white spaces at the end of lines
296 show-trailing-whitespace t
298 ;; Do not show the cursor in non-active window
299 cursor-in-non-selected-windows nil
304 ;; when on a TAB, the cursor has the TAB length
307 ;; This is the default coding system when toggle-input-method is
309 default-input-method "latin-1-prefix"
311 ;; do not put tabs when indenting
313 ;; Stop indenting automatically, that's annoying
314 electric-indent-chars nil
316 ;; And yes, we have a fast display / connection / whatever
320 ;; To keep the cursor always visible when it moves (thanks
322 redisplay-dont-pause t
324 ;; I want to see the keys I type instantaneously
328 ;; Show the column number
329 (column-number-mode 1)
331 ;; What modes for what file extentions
332 (add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode))
334 (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
338 (add-to-list 'auto-mode-alist '("\\.txt\\'" . (lambda()
344 (add-hook 'c++-mode-hook 'flyspell-prog-mode)
345 ;; (add-hook 'lua-mode-hook 'flyspell-prog-mode)
346 (add-hook 'log-edit-mode-hook 'flyspell-mode)
348 (add-hook 'markdown-mode-hook 'flyspell-mode)
349 (add-hook 'markdown-mode-hook 'auto-fill-mode)
353 (put 'narrow-to-region 'disabled nil)
354 (put 'upcase-region 'disabled nil)
355 (put 'downcase-region 'disabled nil)
356 ;; (put 'scroll-left 'disabled nil)
357 ;; (put 'scroll-right 'disabled nil)
359 ;; My selector is clearer than that
360 ;; (when (load "ido" t) (ido-mode t))
362 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
364 ;; Makes buffer names more explicit then <2>, <3> etc. when there are
365 ;; several identical filenames
367 (when (load "uniquify" t)
368 (setq uniquify-buffer-name-style 'post-forward-angle-brackets))
370 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
372 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
374 (when (boundp 'x-display-name)
378 ;; If the display is :0.0, we make the assumption that we are
379 ;; running the emacs locally, and we do not show the
380 ;; hostname. Otherwise, show @host.
382 frame-title-format (concat "emacs" ;;invocation-name
383 (unless (string= x-display-name ":0.0")
384 (concat "@" system-name))
387 ;; Use the same for the icone
389 icon-title-format frame-title-format
392 ;; "tool" bar? Are you kidding?
393 (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
395 ;; My funky setting of face colors. Basically, we switch to a sober
396 ;; look and darken a bit the colors which need to (because of the
397 ;; darker background)
399 (defun ff/configure-faces (fl)
400 "Set face attributes and create faces when necessary"
402 (unless (boundp (car f)) (make-empty-face (car f)))
403 (eval `(set-face-attribute (car f) nil ,@(cdr f))))
406 ;; Not the same in xterm (which is gray in my case) and in
413 ;; (escape-glyph :foreground "#c0c0c0" :weight 'bold)
414 (escape-glyph :foreground "green3" :weight 'bold)
415 (default :background "gray90" :foreground "black")
416 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
417 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
418 (message-cited-text :foreground "red4")
419 (diff-mode :background "gray90" :weight 'bold)
420 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
421 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
422 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
423 (diff-file-header :background "white" :foreground "black"
425 (diff-header :background "white" :foreground "black")
426 (diff-hunk-header :background "white" :foreground "black")
427 (font-lock-builtin-face :foreground "deeppink3")
428 (font-lock-string-face :foreground "dark olive green")
429 (font-lock-variable-name-face :foreground "sienna")
430 ;; (font-lock-function-name-face :foreground "blue" :weight 'bold)
431 (font-lock-function-name-face :foreground "blue")
432 ;; (font-lock-comment-delimiter-face :foreground "dark violet")
433 ;; (font-lock-comment-face :foreground "dark violet")
434 (flyspell-incorrect :background "#ff0000" :foreground "black")
435 (flyspell-duplicate :background "#ff9000" :foreground "black")
436 (hl-line :background "white")
437 (sh-heredoc :foreground "black" :background "#fff0f0")
438 (sh-heredoc-face :foreground "black" :background "#fff0f0")
439 (header-line :background "gray65")
440 (highlight :background "turquoise")
441 (message-cited-text-face :foreground "firebrick")
442 (isearch :background "yellow" :foreground "black")
443 (isearch-lazy-highlight-face' :background "yellow3" :foreground "black")
444 (region :background "#b8b8e0" :foreground "black")
445 ;; (region :background "plum" :foreground "black")
446 (show-paren-match-face :background "gold" :foreground "black")
447 (show-paren-mismatch-face :background "red" :foreground "black")
448 (trailing-whitespace :background "gray65")
449 (cursor :inverse-video t)
450 (enotes/list-title-face :foreground "blue" :weight 'bold)
451 (mode-line :background "#b0b0ff" :foreground "black" :box nil
453 (header-line :background "cornflowerblue" :foreground "black" :box nil
455 (mode-line-inactive :background "gray80" :foreground "black" :box nil
457 ;; (fringe :background "black" :foreground "gray90")
458 (fringe :background "gray80")
459 (ff/date-info-face :foreground "white")
460 (ff/battery-info-face :foreground "black")
461 (ff/battery-info-alarm-face :foreground "red")
462 ;; (ff/mail-alarm-face :foreground "white" :background "red2")
463 ;; (alarm-vc-face :foreground "black" :background "yellow" :weight 'normal)
464 (gui-button-face :background "green" :foreground "black")
468 (unless window-system
469 ;; (xterm-mouse-mode 1)
471 '((italic :underline nil)
472 (info-title-2 :foreground "green")
473 (font-lock-comment-delimiter-face :foreground "green")
474 (font-lock-comment-face :foreground "green")
475 (cperl-array-face :background "gray90" :foreground "blue" :weight 'bold)
476 (cperl-hash-face :background "gray90" :foreground "purple" :weight 'bold)
477 (diff-added :background "gray90" :foreground "green4" :weight 'bold)
478 (diff-removed :background "gray90" :foreground "red2" :weight 'bold)
479 (diff-changed :background "gray90" :foreground "blue" :weight 'bold)
480 (diff-file-header-face :background "white" :foreground "black"
482 (diff-header-face :background "white" :foreground "black")
483 (diff-hunk-header-face :background "white" :foreground "black")
484 (diff-indicator-removed :foreground "red" :weight 'bold)
485 (diff-removed :foreground "red" :weight 'bold)
486 (diff-indicator-added :foreground "blue" :weight 'bold)
487 (diff-added :foreground "blue" :weight 'bold)
488 (font-lock-string-face :foreground "green")
489 (font-lock-variable-name-face :foreground "blue")
490 (font-lock-constant-face :foreground "blue")
491 (font-lock-preprocessor-face :foreground "green")
492 (font-lock-function-name-face :foreground "cyan")
493 (flyspell-incorrect :foreground "red2")
494 (flyspell-duplicate :foreground "OrangeRed2")
495 (hl-line :background "white")
496 (sh-heredoc :foreground "black" :background "#fff0f0")
497 (sh-heredoc-face :foreground "black" :background "#fff0f0")
498 (font-lock-keyword-face :foreground "blue")
499 (highlight :background "darkseagreen3")
500 (isearch :background "orange" :foreground "black")
501 (isearch-lazy-highlight-face' :background "yellow" :foreground "black")
502 ;; (display-time-mail-face :background "white")
503 (show-paren-match-face :background "gold" :foreground "black")
504 (show-paren-mismatch-face :background "red" :foreground "black")
505 (trailing-whitespace :background "white")
506 (mode-line :background "cornflowerblue" :foreground "black" :box nil
508 (header-line :background "cornflowerblue" :foreground "black" :box nil
510 (mode-line-inactive :background "gray60" :foreground "black" :box nil
512 (region :background "white" :foreground "black")
513 (ff/date-info-face :foreground "white" :weight 'bold)
514 (ff/battery-info-face :foreground "black")
515 (ff/battery-info-alarm-face :foreground "red")
516 ;; (ff/mail-alarm-face :foreground "red" :weight 'bold)
517 (selector/selection :background "yellow")
518 (gui-button-face :background "green" :foreground "white")
519 (enotes/information-face :foreground "cyan")
521 (file-name-shadow :foreground "black")
522 (shadow :foreground "black")
523 (warning :foreground "black" :background "red")
527 ;; When we are root, put the modeline in red
529 (when (string= (user-real-login-name) "root")
531 '((mode-line :background "red3" :foreground "black" :box nil
535 ;; Why should I have to do this?
536 (add-hook 'sh-mode-hook
538 (set-face-attribute 'sh-heredoc nil
539 :foreground "#604000"
542 (set-face-attribute 'sh-heredoc-face nil
543 :foreground "#604000"
548 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
549 ;; Move the window on the buffer without moving the cursor
550 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
552 (defun ff/scroll-down ()
553 "Scroll the buffer down one line and keep the cursor at the same location."
559 (defun ff/scroll-up ()
560 "Scroll the buffer up one line and keep the cursor at the same location."
566 (defun ff/scroll-left ()
567 "Scroll the buffer left one column and keep the cursor at the same location."
573 (defun ff/scroll-right ()
574 "Scroll the buffer right one column and keep the cursor at the same location."
580 (define-key global-map [(meta up)] 'ff/scroll-down)
581 (define-key global-map [(meta down)] 'ff/scroll-up)
583 (define-key global-map [(meta shift up)]
584 (lambda () (interactive) (condition-case nil (scroll-down 10) (error nil))))
586 (define-key global-map [(meta shift down)]
587 (lambda () (interactive) (condition-case nil (scroll-up 10) (error nil))))
589 ;; (define-key global-map [(meta shift up)] (lambda () (interactive) (ff/scroll-down 10)))
590 ;; (define-key global-map [(meta shift down)] 'ff/scroll-up)
592 (define-key global-map [(meta p)] 'ff/scroll-down)
593 (define-key global-map [(meta n)] 'ff/scroll-up)
594 (define-key global-map [(meta right)] 'ff/scroll-left)
595 (define-key global-map [(meta left)] 'ff/scroll-right)
597 (defun ff/delete-trailing-whitespaces-and-indent ()
599 (delete-trailing-whitespace)
600 (indent-region (point-min) (point-max) nil))
602 (define-key global-map [(control c) (control q)] 'ff/delete-trailing-whitespaces-and-indent)
604 (define-key global-map [(control x) (control o)] 'other-window)
606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
608 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
610 (defun ff/alsa-sound (file)
611 "Plays a sound with ALSA."
613 (process-kill-without-query (start-process-shell-command "aplay"
617 (if (and (boundp 'x-display-name) (string= x-display-name ":0.0"))
618 (defalias 'ff/play-sound-async 'ff/alsa-sound)
619 (defalias 'ff/play-sound-async 'ding))
621 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
622 ;; I comment stuff often, let's be efficient. shift + down comments
623 ;; the current line and goes down, and shift + up uncomments the line
624 ;; and goes up (they are not the dual of each other, but moving and
625 ;; then uncommenting would be very counter-intuitive).
626 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
628 (defun ff/comment-and-go-down (arg)
629 "Comments and goes down ARG lines."
632 (comment-region (point-at-bol) (point-at-eol)) (error nil))
634 (if (> arg 1) (ff/comment-and-go-down (1- arg))))
636 (defun ff/uncomment-and-go-up (arg)
637 "Uncomments and goes up ARG lines."
640 (uncomment-region (point-at-bol) (point-at-eol)) (error nil))
642 (if (> arg 1) (ff/uncomment-and-go-up (1- arg))))
644 (define-key global-map [(shift down)] 'ff/comment-and-go-down)
645 (define-key global-map [(shift up)] 'ff/uncomment-and-go-up)
647 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
649 (defun ff/show-compilation-buffer-split-window ()
650 "Split the window vertically and show the compilation buffer in the newly created right one"
652 (show-buffer (split-window-right) "*compilation*")
655 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
656 ;; Counting various entities in text
657 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
659 (defun ff/word-occurences ()
660 "Display in a new buffer the list of words sorted by number of
664 (let ((buf (get-buffer-create "*word counting*"))
665 (map (make-sparse-keymap))
666 (nb (make-hash-table))
667 (st (make-hash-table))
670 ;; Collects all words in a hash table
673 (goto-char (point-min))
674 (while (re-search-forward "\\([\\-a-zA-Z\\\\]+\\)" nil t)
675 (let* ((s (downcase (match-string-no-properties 1)))
678 (puthash k (1+ (gethash k nb 0)) nb))))
680 ;; Creates the result buffer
682 (define-key map "q" 'kill-this-buffer)
685 (setq show-trailing-whitespace nil)
688 ;; Builds a list from the hash table
692 (setq result (cons (cons value (gethash key st)) result)))
695 ;; Sort and display it
698 (if (and (> (car x) 3)
699 ;; No leading backslash and at least four characters
700 (string-match "^[^\\]\\{4,\\}" (cdr x))
702 (insert (number-to-string (car x)) " " (cdr x) "\n")))
703 (sort result (lambda (a b) (> (car a) (car b)))))
705 ;; Adjust the window size and stuff
707 (fit-window-to-buffer (get-buffer-window buf))
709 (set-buffer-modified-p nil))
712 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
714 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
718 (setq ps-print-color-p nil
719 ps-paper-type 'letter
721 ;; ps-top-margin (* 1.75 56.692)
722 ;; ps-left-margin 56.692
723 ;; ps-bottom-margin 56.692
724 ;; ps-right-margin 56.692
726 ;; Simple header. Remove that silly frame shadow.
728 ps-print-header-frame nil
729 ps-header-line-pad 0.3
730 ps-header-font-family 'Courier
731 ps-header-title-font-size '(8.5 . 10)
732 ;; ps-header-font-size '(6 . 7)
733 ps-header-font-size '(10 . 12)
734 ps-font-size '(7 . 8)
737 (ps-put 'ps-header-frame-alist 'back-color 1.0)
738 (ps-put 'ps-header-frame-alist 'shadow-color 1.0)
739 (ps-put 'ps-header-frame-alist 'border-color 0.0)
740 (ps-put 'ps-header-frame-alist 'border-width 0.0)
742 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
744 ;; http://blog.tuxicity.se/elisp/emacs/2010/03/26/rename-file-and-buffer-in-emacs.htm
746 (defun rename-file-and-buffer ()
747 "Renames current buffer and file it is visiting."
749 (let ((name (buffer-name))
750 (filename (buffer-file-name)))
751 (if (not (and filename (file-exists-p filename)))
752 (message "Buffer '%s' is not visiting a file!" name)
753 (let ((new-name (read-file-name "New name: " filename)))
754 (cond ((get-buffer new-name)
755 (message "A buffer named '%s' already exists!" new-name))
757 (rename-file name new-name 1)
758 (rename-buffer new-name)
759 (set-visited-file-name new-name)
760 (set-buffer-modified-p nil)))))))
762 (global-set-key (kbd "C-c r") 'rename-file-and-buffer)
764 (defun ff/non-existing-filename (dir prefix suffix)
765 "Returns a filename of the form DIR/PREFIX[.n].SUFFIX whose file does
768 (f (concat prefix suffix)))
769 (while (file-exists-p (concat dir "/" f))
771 f (concat prefix "." (prin1-to-string n) suffix)))
774 (defun ff/print-buffer-or-region-with-faces (&optional file)
776 ;; I am fed up with spell checking highlights
777 (when (and flyspell-mode
778 ;; (or ispell-minor-mode flyspell-mode)
779 (not (y-or-n-p "The spell checking is on, still print ? ")))
780 (error "Printing cancelled, the spell-checking is on"))
784 (ps-print-region-with-faces (region-beginning) (region-end) file)
786 (ps-print-buffer-with-faces file)))
788 (defun ff/print-to-file (file)
789 "Prints the region if selected or the whole buffer in postscript
794 "PS file: " "/tmp/" nil nil
795 (ff/non-existing-filename
797 (replace-regexp-in-string "[^a-zA-Z0-9_.-]" "_" (file-name-nondirectory
801 (ff/print-buffer-or-region-with-faces file))
803 (defun ff/print-to-printer ()
804 "Prints the region if selected or the whole buffer to a postscript
807 (message "Printing to '%s'" (getenv "PRINTER"))
808 (ff/print-buffer-or-region-with-faces))
810 ;; Can you believe it? There is a "print" key on PC keyboards ...
812 (define-key global-map [(print)] 'ff/print-to-file)
813 (define-key global-map [(shift print)] 'ff/print-to-printer)
815 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
816 ;; Dealing with the laptop battery
817 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
819 (defcustom ff/battery-dirs '("/sys/class/power_supply/BAT0"
820 "/sys/class/power_supply/BAT1")
821 "*Where to gather the battery information")
823 (defcustom ff/temperature-files '("/sys/class/thermal/thermal_zone0/temp"
824 "/sys/class/thermal/thermal_zone1/temp")
825 "*Where to gather the thermal information")
827 (defun ff/file-first-line (file)
829 (insert-file-contents-literally file)
830 (buffer-substring (point-at-bol) (point-at-eol))))
832 (defun ff/battery-discharging (l)
833 (and l (or (string= (ff/file-first-line (concat (car l) "/status")) "Discharging")
834 (ff/battery-discharging (cdr l)))))
836 ;; If there is one "Discharging" among the states of all the
837 ;; batteries, the global state is 'discharging. Otherwise, if there is
838 ;; a "Charging", the state is 'charging. If none is true, it is
840 (defun ff/battery-state (l)
842 (let ((u (ff/file-first-line (concat (car l) "/status"))))
843 (if (string= u "Discharging") 'discharging
844 (let ((s (ff/battery-state (cdr l))))
845 (if (eq s 'discharging) 'discharging
846 (if (or (eq s 'charging) (string= u "Charging"))
854 (defun ff/sum-values-from-files (list-files prefix)
859 (string-to-number (ff/file-first-line (format "%s/%s" f prefix)))
864 (defun ff/battery-percent ()
866 (/ (* 100 (ff/sum-values-from-files ff/battery-dirs "energy_now"))
867 (ff/sum-values-from-files ff/battery-dirs "energy_full"))
871 (defun ff/temp-info-string () (interactive)
877 (lambda (f) (string-to-number (ff/file-first-line f)))
878 ff/temperature-files))
882 (let ((s (format "%dC " temp)))
884 (propertize s 'face 'font-lock-warning-face)
893 (defun ff/battery-info-string () (interactive)
895 (pcase (ff/battery-state ff/battery-dirs)
896 ;; (`charging (format "c%d%%" (ff/battery-percent)))
897 ;; (`discharging (format "d%d%%" (ff/battery-percent)))
901 (let ((p (ff/battery-percent)))
903 (propertize (format "↑%d%%" p) 'face 'ff/battery-info-face)
904 (propertize (format "↑%d%%" p) 'face 'ff/battery-info-alarm-face))
909 (let ((p (ff/battery-percent)))
911 (propertize (format "↓%d%%" p) 'face 'ff/battery-info-face)
912 (propertize (format "↓%d%%" p) 'face 'ff/battery-info-alarm-face))
922 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
924 (defun ff/system-info () (interactive)
926 (let* ((buf (get-buffer-create "*system info*"))
927 (win (get-buffer-window buf))
928 (map (make-sparse-keymap)))
935 (define-key map "q" 'kill-this-buffer)
938 (setq show-trailing-whitespace nil)
941 (let ((highlight nil))
945 (if (setq highlight (not highlight))
947 (with-temp-buffer (apply 'call-process x)
949 'face '(:background "#d0d0ff"))
950 (with-temp-buffer (apply 'call-process x)
956 ("hostname" nil t nil "-f")
958 ("df" nil t nil "-h")
961 ("ssh-add" nil t nil "-l")
964 (goto-char (point-min))
965 (while (re-search-forward "^$" nil t) (backward-delete-char 1))
967 (fit-window-to-buffer (get-buffer-window buf))
969 (set-buffer-modified-p nil)
974 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
976 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
980 display-time-interval 10 ;; Check every 10s
982 display-time-string-forms `(
988 ,@(when (ff/temp-info-string)
989 '((ff/temp-info-string)))
991 ,@(when (ff/battery-info-string)
992 '((ff/battery-info-string)))
995 ;; (ff/battery-info-string)
996 ;; 'face 'ff/battery-info-face)))
1002 24-hours ":" minutes
1008 'face 'ff/date-info-face)
1012 ;; display-time-format "%b %a %e %H:%M"
1013 ;; display-time-mail-face nil
1016 ;; Show the time, mail and stuff
1019 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1020 ;; Moving through buffers
1021 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1023 (defun ff/next-buffer ()
1024 "Switches to the next buffer in cyclic order."
1026 (let ((buffer (current-buffer)))
1027 (switch-to-buffer (other-buffer buffer))
1028 (bury-buffer buffer)))
1030 (defun ff/prev-buffer ()
1031 "Switches to the previous buffer in cyclic order."
1033 (let ((list (nreverse (buffer-list)))
1035 (while (and (not found) list)
1036 (let ((buffer (car list)))
1037 (if (and (not (get-buffer-window buffer))
1038 (not (string-match "\\` " (buffer-name buffer))))
1039 (setq found buffer)))
1040 (setq list (cdr list)))
1041 (switch-to-buffer found)))
1043 ;; (define-key global-map [?\C-x right] 'ff/next-buffer)
1044 ;; (define-key global-map [?\C-x left] 'ff/prev-buffer)
1045 ;; (define-key global-map [?\M-\]] 'ff/next-buffer)
1046 ;; (define-key global-map [?\M-\[] 'ff/prev-buffer)
1048 (define-key global-map [(meta right)] 'ff/next-buffer)
1049 (define-key global-map [(meta left)] 'ff/prev-buffer)
1051 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1052 ;; There is actually a decent terminal emulator in emacs!
1053 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1057 (defun ff/kill-associated-buffer (process str) (interactive)
1058 (let ((buffer (process-buffer process)))
1059 (kill-buffer buffer))
1060 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
1062 (defun ff/kill-associated-buffer-and-delete-windows (process str) (interactive)
1063 (let ((buffer (process-buffer process)))
1064 (delete-windows-on buffer)
1065 (kill-buffer buffer))
1066 (message "Process finished (%s)" (replace-regexp-in-string "\n$" "" str)))
1068 (defun ff/shell-new-buffer (buffername program &rest param)
1069 "Start a terminal-emulator in a new buffer with the shell PROGRAM,
1070 optionally invoked with the parameters PARAM. The process associated
1071 to the shell can be killed without query."
1078 (while (get-buffer (concat "*" bn "*"))
1080 bn (format "%s<%d>" buffername n)))
1082 (set-buffer (apply 'make-term (append (list bn program nil) param)))
1084 (setq show-trailing-whitespace nil)
1086 (message "C-c C-k term-char-mode, C-c C-j term-line-mode. \
1087 In line mode: M-p previous line, M-n next line.")
1089 ;; A standard setup of the face above is not enough, I have to
1090 ;; force them here. Since I have a gray90 background, I like
1095 '((term-green :foreground "green3")
1096 (term-cyan :foreground "cyan3")
1097 (term-default-fg-inv :foreground "gray90" :background "black")
1100 (term-set-escape-char ?\C-x)
1102 ;; I like the shell buffer and windows to be deleted when the
1103 ;; shell process terminates. It's a bit of a mess to acheive this.
1105 (let ((process (get-buffer-process (current-buffer))))
1106 (process-kill-without-query process)
1107 (set-process-sentinel process
1108 ;; 'ff/kill-associated-buffer-and-delete-windows
1109 'ff/kill-associated-buffer
1112 ;; (switch-to-buffer-other-window (concat "*" bn "*"))
1113 (switch-to-buffer (concat "*" bn "*"))
1116 (defcustom ff/default-bash-commands '("ssh")
1117 "*List of commands to be used for completion when invoking a new
1118 bash shell with `ff/bash-new-buffer'.")
1120 (defun ff/bash-new-buffer (universal)
1121 "Starts a bash in a new buffer. When invoked with a universal
1122 argument, asks for a command to execute in that bash shell. The list
1123 of commands in `ff/default-bash-commands' is used for auto-completion"
1127 (let ((cmd (completing-read
1129 (mapcar (lambda (x) (cons x t)) ff/default-bash-commands))))
1130 (ff/shell-new-buffer cmd "/bin/bash" "-c" cmd))
1132 (ff/shell-new-buffer "bash" "/bin/bash")))
1134 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1136 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1138 (setq ;; Always follow links if the file is under version control
1139 vc-follow-symlinks t
1142 (when (load "vc-git" nil t)
1143 (add-to-list 'vc-handled-backends 'GIT))
1145 ;; alarm-vc.el is one of my own scripts, check my web page
1147 (when (ff/load-or-alert "alarm-vc" t)
1148 (setq alarm-vc-mode-exceptions "^VM"))
1150 (when (ff/load-or-alert "git")
1151 (setq git-show-unknown nil)
1154 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1155 ;; Makes .sh and others files executable automagically
1156 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1158 ;; Please consider the security-related consequences of using it
1160 ;; (defun ff/make-shell-scripts-executable (&optional filename)
1161 ;; (setq filename (or filename (buffer-name)))
1162 ;; (when (and (string-match "\\.sh$\\|\\.pl$\\|\\.rb" filename)
1163 ;; (not (file-executable-p filename))
1165 ;; (set-file-modes filename 493)
1166 ;; (message "Made %s executable" filename)))
1168 ;; (add-hook 'after-save-hook 'ff/make-shell-scripts-executable)
1170 (add-hook 'after-save-hook
1171 'executable-make-buffer-file-executable-if-script-p)
1173 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1174 ;; Cool stuff to navigate in emacs-lisp sources
1175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1179 (defun ff/goto-function-definition (&optional goback)
1180 "Go directly to the definition of the function at point. With
1181 goback argument, go back where we were."
1184 (if (not (and (boundp 'goto-function-history) goto-function-history))
1185 (error "We were nowhere, buddy")
1186 (message "Come back")
1187 (switch-to-buffer (car (car goto-function-history)))
1188 (goto-char (cdr (car goto-function-history)))
1189 (setq goto-function-history (cdr goto-function-history)))
1191 (let ((function (function-called-at-point)))
1193 (let ((location (find-function-search-for-symbol
1195 (symbol-file function))))
1196 (setq goto-function-history
1197 (cons (cons (current-buffer) (point))
1198 (and (boundp 'goto-function-history)
1199 goto-function-history)))
1200 (pop-to-buffer (car location))
1201 (goto-char (cdr location)))))))
1203 (define-key global-map [(meta g)] 'ff/goto-function-definition)
1204 (define-key global-map [(meta G)] (lambda () (interactive)
1205 (ff/goto-function-definition t)))
1207 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1209 ;; (setq python-indent-offset 4)
1211 ;; (define-key python-mode-map [(shift right)] 'python-indent-shift-right)
1212 ;; (define-key python-mode-map [(shift left)] 'python-indent-shift-left)
1213 ;; (define-key python-mode-map [(shift right)] 'indent-rigidly-right-to-tab-stop)
1214 ;; (define-key python-mode-map [(shift left)] 'indent-rigidly-left-to-tab-stop)
1218 (defun ff/git-pull-push () (interactive)
1219 (message "git pull / push ...")
1220 (async-shell-command "git pull && git push" nil)
1223 (defun ff/git-pull () (interactive)
1224 (message "git pull ...")
1225 (shell-command "git pull" nil)
1228 (define-key global-map [(control x) (v) (p)] 'ff/git-pull-push)
1229 (define-key global-map [(control x) (v) (P)] 'ff/git-pull)
1231 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1232 ;; The big stuff (bbdb, mailcrypt, etc.)
1233 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1235 (setq bbdb-file "~/private/bbdb")
1237 (when (file-exists-p bbdb-file)
1239 ;; Failsafe version if we can't load bbdb
1240 (defun ff/explicit-name (email) email)
1242 (when (ff/load-or-alert "bbdb")
1245 ;; Stop asking (if not t or nil, will not ask)
1246 bbdb-offer-save 'never
1247 ;; I hate when bbdb decides to mess up my windows
1249 ;; I have no problem with bbdb asking me if the sender email
1250 ;; does not match exactly the address we have in the database
1251 bbdb-quiet-about-name-mismatches 0
1252 ;; I have european friends, too
1253 bbdb-north-american-phone-numbers-p nil
1254 ;; To cycle through all possible addresses
1255 bbdb-complete-name-allow-cycling t
1256 ;; Cycle with full names only, not through all net-addresses alone too
1257 bbdb-dwim-net-address-allow-redundancy t
1258 ;; Do not add new addresses automatically
1259 bbdb-always-add-addresses nil
1262 (defface ff/known-address-face
1263 '((t (:foreground "blue2")))
1264 "The face to display known mail identities.")
1266 (defface ff/unknown-address-face
1267 '((t (:foreground "gray50")))
1268 "The face to display unknown mail identities.")
1270 (defun ff/explicit-name (email)
1271 "Returns a string identity for the first address in EMAIL. The
1272 identity is taken from bbdb if possible or from the address itself
1273 with mail-extract-address-components. The suffix \"& al.\" is added if
1274 there are more than one address.
1276 If no bbdb record is found, the name is propertized with the face
1277 ff/unknown-address-face. If a record is found and contains a note
1278 'face, the associated face is used, otherwise
1279 ff/known-address-face is used."
1282 (let* ((data (mail-extract-address-components email))
1285 (record (bbdb-search-simple nil net)))
1290 (propertize (bbdb-record-name record)
1292 (or (cdr (assoc 'face
1293 (bbdb-record-raw-notes record)))
1294 'ff/known-address-face))
1296 (propertize (or (and data (concat "<" net ">"))
1298 'face 'ff/unknown-address-face)
1300 (if (string-match "," (mail-strip-quoted-names email)) " & al.")
1304 (ff/configure-faces '((ff/robot-address-face :foreground "green4")
1305 (ff/personal-address-face :foreground "dark magenta" :weight 'bold)
1306 (ff/important-address-face :foreground "red3"
1313 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1314 ;; An encrypted file to put secure stuff (passwords, ...)
1315 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1317 (when (ff/load-or-alert "mailcrypt")
1318 (mc-setversion "gpg")
1319 ;; Keep the passphrase for 10min
1320 (setq mc-passwd-timeout 600
1321 ff/secure-note-file "~/private/secure-notes.gpg")
1324 (defface ff/secure-date
1325 '((t (:background "white" :weight bold)))
1326 "The face to display the dates in the modeline.")
1328 (defun ff/secure-note-add () (interactive)
1331 (let ((b (find-buffer-visiting ff/secure-note-file)))
1332 (and b (switch-to-buffer b)))
1333 (find-file ff/secure-note-file)
1334 ;; Adds a new entry (i.e. date and a bunch of empty lines)
1335 (goto-char (point-min))
1337 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
1342 ;; Colorizes the dates
1345 (goto-char (point-min))
1346 (while (re-search-forward
1347 "^-- [0-9]+ [a-z]+ [0-9]+ [0-9]+:[0-9]+:[0-9]+ -+$"
1349 (add-text-properties
1350 (match-beginning 0) (1+ (match-end 0))
1351 '(face ff/secure-date rear-nonsticky t))))
1353 (set-buffer-modified-p nil)
1354 (setq buffer-undo-list nil)
1357 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1359 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1361 (setq ;; For french, aspell is far better than ispell
1362 ispell-program-name "aspell"
1363 ;; To avoid ispell errors in figure filenames, labels, references.
1364 ;; ispell-tex-skip-alists
1366 ;; (append (car ispell-tex-skip-alists)
1367 ;; '(("\\\\citep" ispell-tex-arg-end) ;; JMLR
1368 ;; ("\\\\cite" ispell-tex-arg-end)
1369 ;; ("\\\\nocite" ispell-tex-arg-end)
1370 ;; ("\\\\includegraphics" ispell-tex-arg-end)
1371 ;; ("\\\\author" ispell-tex-arg-end)
1372 ;; ("\\\\ref" ispell-tex-arg-end)
1373 ;; ("\\\\label" ispell-tex-arg-end)
1375 ;; (cadr ispell-tex-skip-alists))
1377 ;; So that reftex follows the text when moving in the summary
1378 reftex-toc-follow-mode nil
1379 ;; So that reftex visits files to follow
1380 reftex-revisit-to-follow t
1383 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1384 ;; Used in a \includegraphics runs xfig with the corresponding .fig
1385 ;; file or gimp with the corresponding bitmap picture
1386 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1388 (defun ff/run-eps-edition (prefix rules &optional force)
1390 (let ((filename (concat prefix (car (car rules)))))
1391 (if (or force (file-exists-p filename))
1392 (start-process "latex-eps-editor" nil (cdr (car rules)) filename)
1393 (ff/run-eps-edition prefix (cdr rules) force)))
1394 (message "No original file found for %seps" prefix)))
1396 (defcustom ff/xdvi-for-latex-options nil
1397 "*Options to pass to xdvi when invoking `ff/run-viewer'")
1399 (defun ff/run-viewer (universal)
1401 "Starts an editor for the .eps at point (either xfig or gimp,
1402 depending with the original file it can find), or starts xdvi for
1403 the current .tex if no .eps is found at point. When run with a
1404 universal argument starts xfig even if the .fig does not exist"
1408 (if (and (save-excursion
1409 (and (re-search-backward "{" (point-at-bol) t)
1410 (or (re-search-forward "{\\([^{}]*.\\)eps}" (point-at-eol) t)
1411 (re-search-forward "{\\([^{}]*.\\)pdf}" (point-at-eol) t)
1412 (re-search-forward "{\\([^{}]*.\\)pdf_t}" (point-at-eol) t)
1413 (re-search-forward "{\\([^{}]*.\\)png}" (point-at-eol) t)
1414 (re-search-forward "{\\([^{}]*.\\)jpg}" (point-at-eol) t)
1416 (and (<= (match-beginning 1) (point))
1417 (>= (match-end 1) (- (point) 2))))
1419 (ff/run-eps-edition (match-string-no-properties 1)
1422 ("png" . "gimp") ("pgm" . "gimp") ("ppm" . "gimp")
1426 (if (not (and (buffer-file-name) (string-match "\\(.*\\)\.tex$"
1427 (buffer-file-name))))
1428 (message "Not a latex file!")
1429 (condition-case nil (kill-process xdvi-process) (error nil))
1430 (let ((dvi-name (concat (match-string 1 (buffer-file-name)) ".dvi")))
1431 (if (not (file-exists-p dvi-name)) (error "Can not find %s !" dvi-name)
1432 (message "Starting xdvi with %s" dvi-name)
1433 (setq xdvi-process (apply 'start-process
1434 (append '("xdvi-for-latex" nil "xdvi")
1435 ff/xdvi-for-latex-options
1437 (process-kill-without-query xdvi-process))))
1440 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1443 ;; When working on a tex file with other people, I can just change
1444 ;; ff/tex-command in the -*- part of the file so that I don't mess up
1445 ;; other's people configuration.
1447 (defadvice tex-file (around ff/set-my-own-tex-command () activate)
1449 (or (and (boundp 'ff/tex-command)
1454 ;; This is a bit hardcore, but really I can't bear the superscripts in
1455 ;; my emacs window and could not find another way to deactivate them.
1458 (defun tex-font-lock-suscript (pos) ())
1460 ;; Automagically add the frame numbers in comments in a beamer file
1462 (defun ff/number-beamer-frames ()
1463 "Add the frame numbers as comments after each \begin{frame}"
1470 ;; First, clean-up existing numbering
1471 (goto-char (point-min))
1472 (while (re-search-forward "^ *\\\\begin{frame}.*\\( %% frame [0-9]* / [0-9]*\\)$" nil t)
1473 (kill-region (match-beginning 1) (match-end 1))
1476 ;; Then count the total number of frames
1477 (goto-char (point-min))
1478 (while (re-search-forward "^ *\\\\begin{frame}" nil t)
1479 (setq total (+ total 1))
1482 ;; Then, add the updated numbers
1483 (goto-char (point-min))
1484 (while (re-search-forward "^ *\\\\begin{frame}" nil t)
1485 (move-end-of-line 1)
1486 (insert " %% frame " (prin1-to-string n) " / " (prin1-to-string total))
1492 (message "Added frame numbers in comments.")
1495 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1496 ;; Prevents many errors from beeping and makes the others play a nifty
1498 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1500 (defun ff/ring-bell ()
1501 (unless (memq this-command
1503 abort-recursive-edit
1506 backward-delete-char-untabify
1507 delete-backward-char
1508 minibuffer-complete-and-exit
1509 previous-line next-line
1510 backward-char forward-char
1511 scroll-up scroll-down
1512 enlarge-window-horizontally shrink-window-horizontally
1513 enlarge-window shrink-window
1516 ;; (message "command [%s]" (prin1-to-string this-command))
1517 ;; (ff/play-sound-async "~/local/sounds/short_la.wav")
1520 (setq ring-bell-function 'ff/ring-bell)
1522 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1523 ;; Past the content of the url currently in the kill-ring with
1525 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1527 (defun ff/insert-url (&optional url)
1528 "Downloads an URL with lynx and inserts it after the point."
1529 (interactive "MUrl: ")
1531 (message "Inserting %s" url)
1532 (insert (concat "from: " url "\n\n"))
1533 ;; (call-process "lynx" nil t nil "-nolist" "-dump" url))
1534 (call-process "w3m" nil t nil "-dump" url))
1537 (define-key global-map [(shift mouse-2)]
1538 (lambda () (interactive) (ff/insert-url (current-kill 0))))
1540 ;; lookup-dict is one of my own scripts, check my web page
1542 (when (ff/load-or-alert "lookup-dict" t)
1543 (define-key global-map [(control \?)] 'lookup-dict))
1545 ;; (defun ff/generate-password () (interactive)
1546 ;; (let ((c "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-"))
1547 ;; (nth (random (length c)) c))
1549 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1550 ;; Automatization of things I do often
1551 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1553 (defun ff/snip () (interactive)
1554 (let ((start (condition-case nil (region-beginning) (error (point))))
1555 (end (condition-case nil (region-end) (error (point)))))
1557 (insert "----------------------------- snip snip -----------------------------\n")
1559 (insert "----------------------------- snip snip -----------------------------\n")
1562 (defun ff/start-latex ()
1563 "Adds all that stuff to start a new LaTeX document."
1565 (goto-char (point-min))
1566 (insert "%% -*- mode: latex; mode: reftex; mode: flyspell; coding: utf-8; tex-command: \"pdflatex.sh\" -*-
1568 \\documentclass[12pt,a4paper,twoside]{article}
1569 \\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.5cm,right=2.5cm]{geometry}
1570 \\usepackage[utf8]{inputenc}
1571 \\usepackage{amsmath}
1572 \\usepackage{amssymb}
1573 \\usepackage[pdftex]{graphicx}
1574 \\usepackage{microtype}
1575 \\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue]{hyperref}
1577 \\setlength{\\parindent}{0cm}
1578 \\setlength{\\parskip}{12pt}
1579 \\renewcommand{\\baselinestretch}{1.3}
1580 %\\setlength{\\tabcolsep}{0pt}
1581 %\\renewcommand{\\arraystretch}{1.0}
1583 \\def\\argmax{\\operatornamewithlimits{argmax}}
1584 \\def\\argmin{\\operatornamewithlimits{argmin}}
1586 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1588 %%\\usepackage[default]{opensans}
1589 %%\\usepackage{cmbright}
1590 %%\\renewcommand{\\familydefault}{fos}
1591 %%\\renewcommand{\\seriesdefault}{l}
1592 %%\\renewcommand{\\bfdefault}{sb}
1593 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1594 %% The \\todo command
1595 \\newcounter{nbdrafts}
1596 \\setcounter{nbdrafts}{0}
1598 \\newcommand{\\checknbdrafts}{
1599 \\ifnum \\thenbdrafts > 0
1600 \\@latex@warning@no@line{*WARNING* The document contains \\thenbdrafts \\space draft note(s)}
1602 \\newcommand{\\todo}[1]{\\addtocounter{nbdrafts}{1}{\\color{red} #1}}
1604 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1610 (goto-char (point-max))
1617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1619 (defun ff/add-copyrights ()
1620 "Adds two lines for the (C) at the beginning of current buffer."
1623 (let ((comment-style 'plain))
1625 (goto-char (point-min))
1627 ;; If this is a script, put the copyrights after the first line
1629 (when (re-search-forward "^#!" nil t)
1633 (let ((start (point))
1634 (comment-style 'box))
1638 "\nSTART_IP_HEADER\n"
1640 (when (boundp 'user-full-name)
1641 (concat "\nWritten by " user-full-name "\n"))
1643 (when (boundp 'user-mail-address)
1644 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1649 (comment-region start (point)))
1653 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1655 (defun ff/remove-ip-header () (interactive)
1657 (goto-char (point-min))
1658 (when (and (re-search-forward "START_IP_HEADER" nil t)
1659 (re-search-forward "END_IP_HEADER" nil t))
1663 (defun ff/add-gpl ()
1664 "Adds the GPL statements at the beginning of current buffer."
1666 (let ((comment-style 'box)
1671 ;; This program is free software; you can redistribute it and/or
1672 ;; modify it under the terms of the GNU General Public License
1673 ;; version 2 as published by the Free Software Foundation.
1675 ;; This program is distributed in the hope that it will be useful, but
1676 ;; WITHOUT ANY WARRANTY\; without even the implied warranty of
1677 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1678 ;; General Public License for more details.
1684 This program is free software: you can redistribute it and/or modify
1685 it under the terms of the version 3 of the GNU General Public License
1686 as published by the Free Software Foundation.
1688 This program is distributed in the hope that it will be useful, but
1689 WITHOUT ANY WARRANTY; without even the implied warranty of
1690 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1691 General Public License for more details.
1693 You should have received a copy of the GNU General Public License
1694 along with this program. If not, see <http://www.gnu.org/licenses/>.
1697 (when (boundp 'user-full-name)
1698 (concat "Written by and Copyright (C) " user-full-name "\n"))
1700 (when (boundp 'user-mail-address)
1701 (concat "Contact <" user-mail-address "> for comments & bug reports\n"))
1709 (goto-char (point-min))
1711 ;; If this is a script, put the gpl after the first line
1712 (when (re-search-forward "^#!" nil t)
1716 (let ((start (point)))
1718 (comment-region start (point)))
1721 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1723 (defun ff/start-c ()
1724 "Adds the header to start a C program."
1726 ;; (beginning-of-buffer)
1732 int main(int argc, char **argv) {
1739 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1741 (defun ff/start-c++ ()
1742 "Adds the header to start a C++ program."
1744 ;; (beginning-of-buffer)
1753 using namespace std;
1755 int main(int argc, char **argv) {
1762 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1764 (defun ff/headerize ()
1765 "Adds the #define HEADER_H, etc."
1767 (let ((flag-name (replace-regexp-in-string
1769 (upcase (file-name-nondirectory (buffer-file-name))))))
1770 (goto-char (point-max))
1771 (insert "\n#endif\n")
1772 (goto-char (point-min))
1773 (insert (concat "#ifndef " flag-name "\n"))
1774 (insert (concat "#define " flag-name "\n"))
1778 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1780 (defun ff/start-lua ()
1781 "Adds all the stuff to start a new lua file"
1783 (goto-char (point-min))
1784 (insert "#!/usr/bin/env luajit
1795 (defun ff/start-python ()
1796 "Adds all the stuff to start a new python file"
1798 (goto-char (point-min))
1799 (insert "#!/usr/bin/env python-for-pytorch
1803 import torch, torchvision
1805 from torch import Tensor
1806 from torch import Tensor as T
1808 from torch import nn
1809 from torch.nn import functional as F
1810 from torch.nn.parameter import Parameter
1811 from torch.nn import Module
1818 (defun ff/start-html ()
1819 "Adds all that stuff to start a new HTML file."
1821 (goto-char (point-min))
1822 (insert "<?xml version=\"1.0\" encoding=\"utf-8\"?>
1823 <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
1825 <html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">
1828 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
1830 <style type=\"text/css\">
1839 (goto-char (point-max))
1847 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1849 ;; Insert a line showing all the variables written on the current line
1850 ;; and separated by commas
1852 (defun ff/cout-var (arg)
1853 "Invoked on a line with a list of variables names,
1854 it inserts a line which displays their values in cout, or cerr if
1855 the function is invoked with a universal arg"
1857 (let ((line (if arg "cerr" "cout")))
1858 (goto-char (point-at-bol))
1859 ;; To match '[', put it as the first char in the [...]
1860 (while (re-search-forward "\\([][a-zA-Z0-9_.:\(\)]+\\)" (point-at-eol) t)
1862 (concat line " << \" "
1863 (match-string 1) " = \" << " (match-string 1))))
1864 (goto-char (point-at-bol))
1866 (insert line " << endl\;\n")
1867 (indent-region (point-at-bol 0) (point-at-eol 0) nil)
1870 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1872 (defun ff/clean-article ()
1873 "Cleans up an article by removing the leading blanks on each line
1874 and refilling all the paragraphs."
1876 (let ((fill-column 92))
1877 (goto-char (point-min))
1878 (while (re-search-forward "^\\ +" nil t)
1879 (replace-match "" nil nil))
1880 (fill-individual-paragraphs (point-min) (point-max) t)))
1882 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1884 (defun ff/start-slide (universal)
1889 (insert "\\end{frame}
1891 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1894 (save-excursion (insert "}{}
1899 (insert "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1903 (save-excursion (insert "}{}
1914 (define-key latex-mode-map [(meta S)] 'ff/start-slide)
1915 (define-key latex-mode-map [(control c) (control a)] 'align-current)
1916 (define-key latex-mode-map [(control end)] 'tex-close-latex-block)
1917 (define-key latex-mode-map [(control tab)] 'ispell-complete-word)
1918 (copy-face 'default 'tex-verbatim)
1919 ;; (ff/configure-faces '((tex-verbatim :background "gray95")))
1922 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1924 (defun ff/start-test-code ()
1926 (let ((start (point)))
1928 { // ******************************* START ***************************
1929 #warning Test code added on "
1930 (format-time-string "%04Y %b %02d %02H:%02M:%02S" (current-time))
1933 } // ******************************** END ****************************
1936 (indent-region start (point) nil))
1940 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1942 (defun ff/code-to-html () (interactive)
1944 (narrow-to-region (region-beginning) (region-end))
1945 (replace-string "\"" """ nil (point-min) (point-max))
1946 (replace-string " " " " nil (point-min) (point-max))
1947 (replace-string ">" ">" nil (point-min) (point-max))
1948 (replace-string "<" "<" nil (point-min) (point-max))
1949 (replace-string "\e" "^[" nil (point-min) (point-max))
1950 (replace-string "
\7f" "^?" nil (point-min) (point-max))
1951 (replace-string "
\1f" "^_" nil (point-min) (point-max))
1952 (replace-regexp "$" "<br />" nil (point-min) (point-max))
1956 (defun ff/downcase-html-tags () (interactive)
1958 (beginning-of-buffer)
1959 (while (re-search-forward "<\\([^>]+\\)>" nil t)
1960 (downcase-region (match-beginning 1) (match-end 1)))
1964 ;; If we enter html mode and there is no makefile around, create a
1965 ;; compilation command with tidy (this is cool stuff)
1967 (add-hook 'html-mode-hook
1969 (unless (or (not (buffer-file-name))
1970 (file-exists-p "makefile")
1971 (file-exists-p "Makefile"))
1972 (set (make-local-variable 'compile-command)
1973 (let ((fn (file-name-nondirectory buffer-file-name)))
1974 (format "tidy -utf8 %s > /tmp/%s" fn fn))))))
1976 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1978 (defun ff/count-words-region (beginning end)
1979 "Print number of words in the region.
1980 Words are defined as at least one word-constituent character
1981 followed by at least one character that is not a
1982 word-constituent. The buffer's syntax table determines which
1983 characters these are."
1986 (message "Counting words in region ... ")
1988 (goto-char beginning)
1990 (while (< (point) end)
1991 (re-search-forward "\\w+\\W+")
1992 (setq count (1+ count)))
1993 (cond ((zerop count) (message "The region does NOT have any word."))
1994 ((= 1 count) (message "The region has 1 word."))
1995 (t (message "The region has %d words." count))))))
1997 ;; (add-hook 'html-mode-hook 'flyspell-mode)
1999 (defun ff/tidy-html ()
2000 "Run tidy in on the content of the current buffer, put the result in
2003 (call-process-region (point-min) (point-max)
2006 (list nil (make-temp-file "/tmp/tidy-html."))))
2008 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2010 ;; Create the adequate embryo of a file if it does not exist
2012 (defun ff/start-file () (interactive)
2013 (let ((filename (buffer-file-name)))
2016 (when (string-match "\\.sh$" filename)
2018 (insert "#!/bin/bash\n\nset -e\nset -o pipefail\n\n")
2020 (ff/add-copyrights))
2023 (when (string-match "\\.lua$" filename)
2028 (when (string-match "\\.py$" filename)
2033 (when (string-match "\\.html$" filename)
2039 (when (string-match "\\.h$" filename)
2050 (when (string-match "\\.c$" filename)
2055 (when (string-match "\.\\(cc\\|cpp\\)$" filename)
2058 (let ((headername (replace-regexp-in-string "\\.\\(cc\\|cpp\\)$" ".h"
2060 (if (file-exists-p headername)
2061 (insert (concat "\n#include \"" (file-name-nondirectory headername) "\"\n"))
2065 (when (string-match "\\.tex$" filename)
2070 (set-buffer-modified-p nil)
2073 (if (>= emacs-major-version 22)
2074 (add-to-list 'find-file-not-found-functions 'ff/start-file)
2075 (add-to-list 'find-file-not-found-hooks 'ff/start-file))
2077 (when (>= emacs-major-version 24)
2078 (define-obsolete-function-alias 'make-local-hook 'ignore "21.1")
2079 (setq send-mail-function 'sendmail-send-it) ;; emacs 24.x stuff
2082 '(diff-added ((default (:background "gray90" :foreground "green4" :weight bold))))
2083 '(diff-removed ((default (:background "gray90" :foreground "red2" :weight bold))))
2084 '(diff-changed ((default (:background "gray90" :foreground "blue" :weight bold))))
2088 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2090 (define-key global-map [f8] 'ff-find-other-file)
2091 (define-key global-map [(shift f8)] (lambda () (interactive) (ff-find-other-file t)))
2093 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2094 ;; The compilation hacks
2095 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2097 ;; If we enter c++ mode and there is no makefile around, we create a
2098 ;; make command on the fly for the specific object file
2100 (add-hook 'c++-mode-hook
2102 (unless (or (file-exists-p "makefile") (file-exists-p "Makefile"))
2103 (set (make-local-variable 'compile-command)
2106 (file-name-sans-extension
2107 (file-name-nondirectory buffer-file-name)))))))
2109 ;; <f1> runs the compilation according to the compile-command (and
2110 ;; thus does not ask any confirmation), shows the compilation buffer
2111 ;; during compilation and delete all windows showing the compilation
2112 ;; buffer if the compilation ends with no error
2114 ;; <shift-f1> asks for a compilation command and runs the compilation
2115 ;; but does not restore the window configuration (i.e. the compilation
2116 ;; buffer's window will still be visible, as usual)
2118 ;; <f2> goes to the next compilation error (as C-x ` does on the
2119 ;; standard configuration)
2121 (defun ff/restore-windows-if-no-error (buffer msg)
2122 "Delete the windows showing the compilation buffer if msg
2123 matches \"^finished\"."
2125 (when (string-match "^finished" msg)
2126 ;; (delete-windows-on buffer)
2127 (if (boundp 'ff/window-configuration-before-compilation)
2128 (set-window-configuration ff/window-configuration-before-compilation))
2132 (add-to-list 'compilation-finish-functions 'ff/restore-windows-if-no-error)
2134 (defun ff/fast-compile ()
2135 "Compiles without asking anything."
2137 (let ((compilation-read-command nil))
2138 (setq ff/window-configuration-before-compilation (current-window-configuration))
2139 (compile compile-command)))
2141 (setq compilation-read-command t
2142 compile-command "make -j -k"
2143 ;; compile-history '("make clean" "make DEBUG=yes -j -k" "make -j -k")
2146 (defun ff/universal-compile (universal) (interactive "P")
2147 (funcall (or (cdr (assoc major-mode
2149 (latex-mode . tex-file)
2150 (html-mode . browse-url-of-buffer)
2151 ;; Here you can add other mode -> compile command
2153 'ff/fast-compile ;; And this is the failsafe
2156 (define-key global-map [f1] 'ff/universal-compile)
2157 (define-key global-map [(shift f1)] 'compile)
2158 (define-key global-map [f2] 'next-error)
2160 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2162 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2164 ;; (when (ff/load-or-alert "flyspell-timer" t)
2165 ;; (add-hook 'flyspell-mode-hook 'flyspell-timer-ensure-idle-timer))
2167 (defun ff/start-flyspell () (interactive)
2170 ;; (flyspell-incorrect :background "#ff0000" :foreground "black")
2171 ;; (flyspell-duplicate :background "#ff9000" :foreground "black")
2172 (flyspell-incorrect :foreground "#ff0000" :weight 'bold)
2173 (flyspell-duplicate :foreground "#ff9000" :weight 'bold)
2175 ;; (flyspell-buffer)
2178 (add-hook 'flyspell-mode-hook 'ff/start-flyspell)
2180 (defun ff/pick-dictionnary () (interactive)
2181 (when (and (boundp 'flyspell-mode) flyspell-mode)
2182 (if (and current-input-method (string-match "latin" current-input-method))
2183 (ispell-change-dictionary "francais")
2184 (ispell-change-dictionary "american"))
2185 ;; (flyspell-buffer)
2189 (defadvice toggle-input-method (after ff/switch-dictionnary nil activate)
2190 (ff/pick-dictionnary))
2192 ;; (add-hook 'message-mode-hook 'auto-fill-mode)
2193 ;; (add-hook 'message-mode-hook 'flyspell-mode)
2195 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2196 ;; Delete all windows which are in the same "column", which means
2197 ;; whose xmin and xmax are bounded by the xmin and xmax of the
2198 ;; currently selected column
2199 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2201 ;; This is from emacs23 ! better than my old ff/delete-other-windows-in-column
2203 (unless (fboundp 'delete-other-windows-vertically)
2205 (defun delete-other-windows-vertically (&optional window)
2206 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
2207 This may be a useful alternative binding for \\[delete-other-windows]
2208 if you often split windows horizontally."
2210 (let* ((window (or window (selected-window)))
2211 (edges (window-edges window))
2213 (while (not (eq (setq w (next-window w 1)) window))
2214 (let ((e (window-edges w)))
2215 (when (and (= (car e) (car edges))
2216 (= (caddr e) (caddr edges)))
2218 (mapc 'delete-window delenda)))
2221 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2223 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2227 (defun ff/entropy (l)
2232 (* (- x) (/ (log x) (log 2)))))
2237 ;; Usefull to deal with results in latex files
2239 (defun ff/round-floats-in-region () (interactive)
2242 (narrow-to-region (region-beginning) (region-end))
2243 (error (thing-at-point 'word)))
2245 (goto-char (point-min))
2246 (while (re-search-forward "[0-9\.]+" nil t)
2247 (let ((value (string-to-number (buffer-substring (match-beginning 0) (match-end 0)))))
2248 (delete-region (match-beginning 0) (match-end 0))
2249 (insert (format "%0.1e" value)))))))
2251 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2253 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2257 (define-key global-map [(shift iso-lefttab)] 'ispell-complete-word)
2258 ;; shift-tab going backward is kind of standard
2259 (define-key Info-mode-map [(shift iso-lefttab)] 'Info-prev-reference)
2261 ;; (define-key global-map [(control x) (control a)] 'auto-fill-mode)
2263 ;; Put back my keys, you thief!
2264 (define-key global-map [(home)] 'beginning-of-buffer)
2265 (define-key global-map [(end)] 'end-of-buffer)
2266 ;; (define-key global-map [(insertchar)] 'overwrite-mode)
2267 (define-key global-map [(delete)] 'delete-char)
2269 ;; Cool shortcuts to move to the end / beginning of block keen
2270 (define-key global-map [(control right)] 'forward-sexp)
2271 (define-key global-map [(control left)] 'backward-sexp)
2273 ;; Wheel mouse moves up and down 2 lines (and DO NOT BEEP when we are
2274 ;; out of the buffer)
2276 (define-key global-map [mouse-4]
2277 (lambda () (interactive) (condition-case nil (scroll-down 2) (error nil))))
2278 (define-key global-map [mouse-5]
2279 (lambda () (interactive) (condition-case nil (scroll-up 2) (error nil))))
2281 ;; with shift it goes faster
2282 (define-key global-map [(shift mouse-4)]
2283 (lambda () (interactive) (condition-case nil (scroll-down 50) (error nil))))
2284 (define-key global-map [(shift mouse-5)]
2285 (lambda () (interactive) (condition-case nil (scroll-up 50) (error nil))))
2287 ;; Meta-? shows the properties of the character at point
2288 (define-key global-map [(meta ??)]
2289 (lambda () (interactive)
2290 (message (prin1-to-string (text-properties-at (point))))))
2292 ;; Compiles the latex file in the current buffer
2294 (setq tex-start-commands "\\input")
2295 (define-key global-map [f3] 'tex-file)
2296 (define-key global-map [(shift f3)] 'tex-bibtex-file)
2298 ;; To run xdvi on the dvi associated to the .tex in the current
2299 ;; buffer, and to edit the .fig or bitmap image used to generate the
2302 (define-key global-map [f4] 'ff/run-viewer)
2304 ;; Closes the current \begin{}
2306 ;; Meta-/ remaped (completion)
2308 (define-key global-map [(shift right)] 'dabbrev-expand)
2309 (define-key global-map [(meta =)] 'dabbrev-expand)
2311 ;; Change the current window.
2313 (defun ff/next-same-frame-window () (interactive)
2314 (select-window (next-window (selected-window)
2315 (> (minibuffer-depth) 0)
2318 (defun ff/previous-same-frame-window () (interactive)
2319 (select-window (previous-window (selected-window)
2320 (> (minibuffer-depth) 0)
2323 (define-key global-map [(shift prior)] 'ff/next-same-frame-window)
2324 (define-key global-map [(shift next)] 'ff/previous-same-frame-window)
2326 (define-key global-map [(control })] 'enlarge-window-horizontally)
2327 (define-key global-map [(control {)] 'shrink-window-horizontally)
2328 (define-key global-map [(control \")] 'enlarge-window)
2329 (define-key global-map [(control :)] 'shrink-window)
2331 ;; (define-key global-map [(control shift prior)] 'next-multiframe-window)
2332 ;; (define-key global-map [(control shift next)] 'previous-multiframe-window)
2334 ;; I have two screens sometime!
2335 ;; (define-key global-map [(meta next)] 'other-frame)
2336 ;; (define-key global-map [(meta prior)] (lambda () (interactive) (other-frame -1)))
2340 ;; (define-key global-map [(shift backspace)] 'winner-undo)
2342 ;; (define-key global-map [(shift home)] 'delete-other-windows-vertically)
2343 ;; (define-key global-map [(control +)] 'enlarge-window)
2344 ;; (define-key global-map [(control -)] 'shrink-window)
2345 ;; Goes to next/previous buffer
2346 ;; (define-key global-map [(control prior)] 'ff/next-buffer)
2347 ;; (define-key global-map [(control next)] 'ff/prev-buffer)
2349 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2350 ;; If M-. on a symbol, show where it is defined in another window
2351 ;; without giving focus, cycle if repeated.
2352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2354 (when (ff/load-or-alert "etags")
2356 (defun ff/find-tag-nofocus () (interactive)
2357 "Show in another window the definition of the current tag"
2358 (let ((tag (find-tag-default)))
2359 (display-buffer (find-tag-noselect tag (string= tag last-tag)))
2360 (message "Tag %s" tag)
2364 (define-key global-map [(meta .)] 'ff/find-tag-nofocus)
2367 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2368 ;; Destroys the current buffer and its window if it's not the only one
2369 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2371 (defcustom ff/kill-this-buffer-and-delete-window-exceptions ""
2372 "*Regexp matching the buffer names which have to be kept when using
2373 `ff/kill-this-buffer-and-delete-window'.")
2375 (defun ff/kill-this-buffer-and-delete-window (universal)
2376 "Unless its name matches
2377 `ff/kill-this-buffer-and-delete-window-exceptions', kills the
2378 current buffer and deletes the current window if it's not the
2379 only one in the frame. If the buffer has to be kept, go to the
2380 next one. With universal argument, kill all killable buffers."
2383 (let ((nb-killed 0))
2385 (unless (string-match ff/kill-this-buffer-and-delete-window-exceptions
2388 (setq nb-killed (1+ nb-killed))
2391 (message "Killed %d buffer%s" nb-killed (if (> nb-killed 1) "s" "")))
2392 (if (string-match ff/kill-this-buffer-and-delete-window-exceptions (buffer-name))
2394 (kill-this-buffer)))
2395 (unless (one-window-p t) (delete-window))
2398 (define-key global-map [(control backspace)] 'ff/kill-this-buffer-and-delete-window)
2399 ;; (define-key calc-mode-map [(control backspace)] 'calc-quit)
2402 (setq ff/kill-this-buffer-and-delete-window-exceptions
2403 "^ \\|\\*Messages\\*\\|\\*scratch\\*\\|\\*Group\\*\\|\\*-jabber-\\*\\|\\*-jabber-process-\\*\\|\\*media\\*")
2405 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2407 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2409 (defun ff/elisp-debug-on ()
2410 "Switches `debug-on-error' and `debug-on-quit'."
2413 (setq debug-on-error nil
2415 (setq debug-on-error t
2418 (message "elisp debug on")
2419 (message "elisp debug off")))
2421 (defun ff/create-dummy-buffer (&optional universal) (interactive "P")
2422 (find-file (concat "/tmp/" (ff/non-existing-filename "/tmp/" "dummy" "")))
2424 (if universal (ff/insert-url (current-kill 0)))
2425 (message "New dummy text-mode buffer"))
2427 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2428 ;; Recentf to keep a list of recently visited files. I use it
2429 ;; exclusively with my selector.el
2430 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2434 ;; If we just check for file-symlink-p, everytime we start emacs it
2435 ;; will check all the remote files listed in recentf-list, so we check
2436 ;; that they are not remote first
2437 (defun ff/file-not-remote-but-symlink (filename)
2438 (and (not (file-remote-p filename)) (file-symlink-p filename)))
2440 (setq recentf-exclude (append recentf-exclude
2442 ff/file-not-remote-but-symlink
2443 "enotes$" "secure-notes$" "media-playlists$"
2445 "svn-commit.tmp$" ".git/COMMIT_EDITMSG$"
2446 "\.bbl$" "\.aux$" "\.toc$"
2448 recentf-max-saved-items 10000
2449 recentf-save-file (concat ff/emacs-dir "/recentf")
2452 (when (boundp 'recentf-keep) (add-to-list 'recentf-keep 'file-remote-p))
2456 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2457 ;; My front-end to mplayer
2458 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2460 ;; (ff/compile-when-needed "media/mplayer")
2461 ;; (ff/compile-when-needed "media")
2463 (when (ff/load-or-alert "media")
2465 (unless window-system
2468 (media/mode-string-face
2469 :foreground "blue4" :weight 'bold)
2471 (media/current-tune-face
2472 :foreground "black" :background "yellow" :weight 'normal)
2474 (media/instant-highlight-face
2475 :foreground "black" :background "orange" :weight 'normal)
2479 (define-key global-map [(meta \\)] 'media)
2481 (setq media/expert t
2482 media/add-current-song-to-interrupted-when-killing t
2483 media/duration-to-history 30
2484 media/history-size 1000
2485 media/playlist-file (concat ff/emacs-dir "/media-playlists")
2486 media/continue-mode-hint (if window-system "⤸" "*")
2487 media/mplayer/args '(
2491 "-subfont-osd-scale" "3"
2492 ;; "-stop-xscreensaver"
2495 media/mplayer/timing-request-period 1.0
2500 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2502 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2504 ;; selector.el is one of my own scripts, check my web page
2506 (when (ff/load-or-alert "selector" t)
2507 ;; (define-key global-map [(shift return)] 'selector/quick-move-in-buffer)
2508 (define-key global-map [(control x) (control b)] 'selector/switch-buffer)
2510 (defun ff/visit-debpkg-file (&optional regexp)
2511 "This function lists all the files found with dpkg -S and
2512 proposes to visit them."
2513 (interactive "sPattern: ")
2519 (cons (selector/filename-to-string s) s))
2521 (shell-command-to-string (concat "dpkg -S " regexp " | awk '{print $2}'"))))
2524 "*selector find-file*"
2528 (add-hook 'selector/mode-hook (lambda () (setq truncate-lines t)))
2530 (defun ff/selector-insert-record-callback (r)
2531 (bbdb-display-records (list r))
2532 ;; Weird things will happen if you kill the buffer from which you
2533 ;; invoked ff/selector-mail-from-bbdb
2534 (insert (car (elt r 6)))
2537 (defun ff/selector-compose-mail-callback (r)
2538 (vm-compose-mail (car (elt r 6)))
2541 (defun ff/selector-mail-from-bbdb () (interactive)
2544 (lambda (r) (cons (concat (elt r 0)
2552 (if (string= mode-name "Mail")
2553 'ff/selector-insert-record-callback
2554 'ff/selector-compose-mail-callback)
2559 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2560 ;; My script to automatically count the number of words and characters
2561 ;; between two markers
2563 (ff/load-or-alert "text-counters.el")
2565 ;; Display them in the modeline when in text-mode
2567 (add-hook 'text-mode-hook 'tc/add-text-counters-in-modeline)
2569 ;; (add-hook 'text-mode-hook
2571 ;; (setq comment-start " > ")))
2573 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2574 ;; A function to remove temporary alarm windows
2575 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2577 (defcustom ff/annoying-windows-regexp
2578 "\\*Messages\\*\\|\\*compilation\\*\\|\\*tex-shell\\*\\|\\*Help\\*\\|\\*info\\*\\|\\*Apropos\\*\\|\\*BBDB\\*\\|\\*.*-diff\\*"
2579 "The regexp matching the windows to be deleted by `ff/delete-annoying-windows'"
2582 (defun ff/delete-annoying-windows ()
2583 "Close all the windows showing buffers whose names match
2584 `ff/annoying-windows-regexp'."
2586 (when ff/annoying-windows-regexp
2588 (when (and (not (one-window-p w))
2589 (string-match ff/annoying-windows-regexp
2590 (buffer-name (window-buffer w))))
2594 (message "Removed annoying windows")
2598 (setq ff/annoying-windows-regexp
2599 (concat ff/annoying-windows-regexp
2600 "\\|\\*unspooled mails\\*\\|\\*enotes alarms\\*\\|\\*system info\\*"))
2602 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2603 ;; Some handy functions
2604 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2606 (defun ff/twin-horizontal-current-buffer () (interactive)
2607 (delete-other-windows)
2608 (split-window-horizontally)
2612 (defun ff/twin-vertical-current-buffer () (interactive)
2613 (delete-other-windows)
2614 (split-window-vertically)
2618 (defun ff/flyspell-mode (arg) (interactive "p")
2619 (if flyspell-mode (flyspell-mode -1)
2624 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2626 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2628 (defun ff/move-region-to-fridge (&optional universal) (interactive "P")
2629 "Cut the current region, paste it in a file called ./fridge
2630 with a time tag, and save this file"
2631 (unless (use-region-p) (error "No region selected"))
2632 (let ((bn (file-name-nondirectory (buffer-file-name))))
2634 (copy-region-as-kill (region-beginning) (region-end))
2635 (kill-region (region-beginning) (region-end))
2637 (with-current-buffer (find-file-noselect "fridge")
2638 (goto-char (point-max))
2640 (insert "######################################################################\n")
2642 (format-time-string "%Y %b %d %H:%M:%S" (current-time))
2648 (message "Region moved to fridge")
2653 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2654 ;; My own keymap mapped to C-`
2655 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2657 (setq ff/map (make-sparse-keymap))
2658 (define-key global-map [(control \`)] ff/map)
2660 ;; (defun ff/start-stop-macro-recording () (interactive)
2661 ;; (if (or defining-kbd-macro executing-kbd-macro)
2662 ;; (kmacro-end-macro)
2663 ;; (kmacro-start-macro))
2666 ;; (define-key global-map [(shift return)] 'ff/start-stop-macro-recording)
2668 (unless window-system
2669 ;; (define-key global-map [(control @)] ff/map)
2670 (define-key global-map [(meta O) \`] ff/map)
2673 (define-key esc-map "`" ff/map)
2675 (defun ff/kill-downto-signature () (interactive)
2677 (when (re-search-forward "^-- $")
2678 (kill-region s (match-beginning 0))
2681 (defun ff/git-status (&optional dir) (interactive)
2682 (if (buffer-file-name)
2683 (git-status (file-name-directory (buffer-file-name)))
2684 (error "No file attached to this buffer")))
2686 (defun ff/insert-date (&optional universal) (interactive "P")
2687 (insert (format-time-string "\n * %H:%M:%S %A %B %d, %Y\n\n" (current-time)))
2688 ;; ;; (insert (format-time-string "%Y %b %d %H:%M:%S" (current-time)))
2689 ;; ;; (insert (format-time-string "%d.%m.%y" (current-time)))
2691 ;; (insert (format-time-string "%d.%m.%Y %H:%M:%S" (current-time)))
2692 ;; (insert (format-time-string "%d.%m.%Y" (current-time))))
2695 (define-key ff/map [(control g)] 'ff/git-status)
2696 ;; (define-key ff/map [(control w)] 'server-edit)
2697 (define-key ff/map [(control d)] 'ff/elisp-debug-on)
2698 ;; (define-key ff/map "d" 'diary)
2699 (define-key ff/map "d" 'ff/insert-date)
2700 (define-key ff/map [(control \`)] 'ff/bash-new-buffer)
2701 (define-key ff/map [(control n)] 'enotes/show-all-notes)
2702 (define-key ff/map [(control s)] 'ff/secure-note-add)
2703 (define-key ff/map [(control t)] 'ff/start-test-code)
2704 (define-key ff/map [(control q)] 'ff/create-dummy-buffer)
2705 (define-key ff/map [(control a)] 'auto-fill-mode)
2706 (define-key ff/map [(control i)] 'ff/system-info)
2707 (define-key ff/map "w" 'ff/word-occurences)
2708 ;; (define-key ff/map [(control c)] 'calendar)
2709 (define-key ff/map [(control c)] 'ff/show-compilation-buffer-split-window)
2710 ;; (define-key ff/map [(control c)] (lambda () (interactive) (save-excursion (calendar))))
2711 (define-key ff/map [(control l)] 'goto-line)
2712 (define-key ff/map "l" 'longlines-mode)
2713 (define-key ff/map [(control o)] 'selector/quick-pick-recent)
2714 (define-key ff/map "s" 'selector/quick-move-in-buffer)
2715 (define-key ff/map "S" 'selector/search-sentence)
2716 (define-key ff/map "t" (lambda () (interactive) (find-file "~/private/TODO.txt")))
2717 (define-key ff/map "h" 'ff/tidy-html)
2718 (define-key ff/map "c" 'ff/count-char)
2719 (define-key ff/map [(control p)] 'ff/print-to-file)
2720 (define-key ff/map "P" 'ff/print-to-printer)
2721 (define-key ff/map [(control b)] 'bbdb)
2722 (define-key ff/map "m" 'ff/selector-mail-from-bbdb)
2723 (define-key ff/map [(control m)] 'woman)
2724 (define-key ff/map "b" 'bookmark-jump)
2725 (define-key ff/map [(control =)] 'calc)
2726 (define-key ff/map "=" 'ff/number-beamer-frames)
2727 (define-key ff/map [(control shift b)]
2728 (lambda () (interactive)
2731 (define-key ff/map "f" 'ff/move-region-to-fridge)
2732 (define-key ff/map [(control f)] 'ff/flyspell-mode)
2733 (define-key ff/map [(control k)] 'ff/kill-downto-signature)
2735 (define-key ff/map [?\C-0] 'ff/delete-annoying-windows)
2736 (define-key ff/map "1" 'delete-other-windows)
2737 (define-key ff/map [?\C-1] 'delete-other-windows)
2738 (define-key ff/map "2" 'ff/twin-vertical-current-buffer)
2739 (define-key ff/map [?\C-2] 'ff/twin-vertical-current-buffer)
2740 (define-key ff/map "3" 'ff/twin-horizontal-current-buffer)
2741 (define-key ff/map [?\C-3] 'ff/twin-horizontal-current-buffer)
2743 (define-key ff/map " " 'delete-trailing-whitespace)
2745 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2746 ;; Hacks so that all keys are functionnal in xterm and through ssh.
2747 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2749 (unless window-system
2751 ;; One day I will understand these clipboard business. Until then,
2752 ;; so that it works in xterm (yes), let's use xclip. This is a bit
2755 ;; (defun ff/yank-with-xclip (&optional arg)
2756 ;; "Paste the content of the X clipboard with the xclip
2757 ;; command. Without ARG converts some of the '\\uxxxx' characters."
2758 ;; (interactive "P")
2759 ;; (with-temp-buffer
2760 ;; (shell-command "xclip -o" t)
2762 ;; (mapc (lambda (x) (replace-string (concat "\\u" (car x)) (cdr x) nil (point-min) (point-max)))
2763 ;; '(("fffd" . "??")
2774 ;; (kill-ring-save (point-min) (point-max)))
2778 ;; (define-key global-map [(meta y)] 'ff/yank-with-xclip)
2780 ;; (set-terminal-coding-system 'iso-latin-1)
2781 ;; (set-terminal-coding-system 'utf-8)
2783 ;; I have in my .Xressource
2785 ;; XTerm.VT100.translations: #override\n\
2786 ;; <Btn4Down>,<Btn4Up>:scroll-back(2,line)\n\
2787 ;; <Btn5Down>,<Btn5Up>:scroll-forw(2,line)\n\
2788 ;; Ctrl<Btn4Down>,Ctrl<Btn4Up>:scroll-back(1,page)\n\
2789 ;; Ctrl<Btn5Down>,Ctrl<Btn5Up>:scroll-forw(1,page)\n\
2790 ;; Shift<Btn4Down>,Shift<Btn4Up>:scroll-back(1,halfpage)\n\
2791 ;; Shift<Btn5Down>,Shift<Btn5Up>:scroll-forw(1,halfpage)\n\
2792 ;; Alt<KeyPress>:insert-eight-bit()\n\
2793 ;; !Shift<Key>BackSpace: string("
\7f")\n\
2794 ;; Ctrl<Key>BackSpace: string("\eOZ")\n\
2795 ;; Shift<Key>Prior: string("\e[5;2~")\n\
2796 ;; Shift<Key>Next: string("\e[6;2~")\n\
2797 ;; Shift Ctrl<Key>]: string("\eO}")\n\
2798 ;; Shift Ctrl<Key>[: string("\eO{")\n\
2799 ;; Shift Ctrl<Key>/: string("\eO?")\n\
2800 ;; Ctrl<Key>/: string("\eO/")\n\
2801 ;; Shift Ctrl<Key>=: string("\eO+")\n\
2802 ;; Ctrl<Key>=: string("\eO=")\n\
2803 ;; Shift Ctrl<Key>;: string("\eO:")\n\
2804 ;; Ctrl<Key>;: string("\eO;")\n\
2805 ;; Shift Ctrl<Key>`: string("\eO~")\n\
2806 ;; Ctrl<Key>`: string("\eO`")\n\
2807 ;; Shift Ctrl<Key>': string("\eO\\\"")\n\
2808 ;; Ctrl<Key>': string("\eO'")\n\
2809 ;; Shift Ctrl<Key>.: string("\eO>")\n\
2810 ;; Ctrl<Key>.: string("\eO.")\n\
2811 ;; Shift Ctrl<Key>\\,: string("\eO<")\n\
2812 ;; Ctrl<Key>\\,: string("\eO,")
2814 (define-key function-key-map "\e[2~" [insert])
2816 (define-key function-key-map "\e[Z" [S-iso-lefttab])
2818 (define-key function-key-map "\e[1;2A" [S-up])
2819 (define-key function-key-map "\e[1;2B" [S-down])
2820 (define-key function-key-map "\e[1;2C" [S-right])
2821 (define-key function-key-map "\e[1;2D" [S-left])
2822 (define-key function-key-map "\e[1;2F" [S-end])
2823 (define-key function-key-map "\e[1;2H" [S-home])
2825 (define-key function-key-map "\e[2;2~" [S-insert])
2826 (define-key function-key-map "\e[5;2~" [S-prior])
2827 (define-key function-key-map "\e[6;2~" [S-next])
2829 (define-key function-key-map "\e[1;2P" [S-f1])
2830 (define-key function-key-map "\e[1;2Q" [S-f2])
2831 (define-key function-key-map "\e[1;2R" [S-f3])
2832 (define-key function-key-map "\e[1;2S" [S-f4])
2833 (define-key function-key-map "\e[15;2~" [S-f5])
2834 (define-key function-key-map "\e[17;2~" [S-f6])
2835 (define-key function-key-map "\e[18;2~" [S-f7])
2836 (define-key function-key-map "\e[19;2~" [S-f8])
2837 (define-key function-key-map "\e[20;2~" [S-f9])
2838 (define-key function-key-map "\e[21;2~" [S-f10])
2840 (define-key function-key-map "\e[1;5A" [C-up])
2841 (define-key function-key-map "\e[1;5B" [C-down])
2842 (define-key function-key-map "\e[1;5C" [C-right])
2843 (define-key function-key-map "\e[1;5D" [C-left])
2844 (define-key function-key-map "\e[1;5F" [C-end])
2845 (define-key function-key-map "\e[1;5H" [C-home])
2847 (define-key function-key-map "\e[2;5~" [C-insert])
2848 (define-key function-key-map "\e[5;5~" [C-prior])
2849 (define-key function-key-map "\e[6;5~" [C-next])
2851 (define-key function-key-map "\e[1;9A" [M-up])
2852 (define-key function-key-map "\e[1;9B" [M-down])
2853 (define-key function-key-map "\e[1;9C" [M-right])
2854 (define-key function-key-map "\e[1;9D" [M-left])
2855 (define-key function-key-map "\e[1;9F" [M-end])
2856 (define-key function-key-map "\e[1;9H" [M-home])
2858 (define-key function-key-map "\e[2;9~" [M-insert])
2859 (define-key function-key-map "\e[5;9~" [M-prior])
2860 (define-key function-key-map "\e[6;9~" [M-next])
2862 ;; The following ones are not standard
2864 (define-key function-key-map "\eO}" (kbd "C-}"))
2865 (define-key function-key-map "\eO{" (kbd "C-{"))
2866 (define-key function-key-map "\eO?" (kbd "C-?"))
2867 (define-key function-key-map "\eO/" (kbd "C-/"))
2868 (define-key function-key-map "\eO:" (kbd "C-:"))
2869 (define-key function-key-map "\eO;" (kbd "C-;"))
2870 (define-key function-key-map "\eO~" (kbd "C-~"))
2871 (define-key function-key-map "\eO`" (kbd "C-\`"))
2872 (define-key function-key-map "\eO\"" (kbd "C-\""))
2873 (define-key function-key-map "\eO|" (kbd "C-|"))
2874 (define-key function-key-map "\eO'" (kbd "C-'"))
2875 (define-key function-key-map "\eO>" (kbd "C->"))
2876 (define-key function-key-map "\eO." (kbd "C-."))
2877 (define-key function-key-map "\eO<" (kbd "C-<"))
2878 (define-key function-key-map "\eO," (kbd "C-,"))
2879 (define-key function-key-map "\eO-" (kbd "C--"))
2880 (define-key function-key-map "\eO=" (kbd "C-="))
2881 (define-key function-key-map "\eO+" (kbd "C-+"))
2883 (define-key function-key-map "\eOZ" [C-backspace])
2885 (define-key minibuffer-local-map "
\10" 'previous-history-element)
2886 (define-key minibuffer-local-map "
\ e" 'next-history-element)
2888 ;; (define-key global-map [(alt prior)] 'ff/prev-buffer)
2889 ;; (define-key global-map [(alt next)] 'ff/next-buffer)
2893 ;; I am fed up with Alt-Backspace in the minibuffer erasing the
2894 ;; content of the kill-ring
2896 (defun ff/backward-delete-word (arg)
2897 "Delete characters forward until encountering the end of a word, but do not put them in the kill ring.
2898 With argument ARG, do this that many times."
2900 (delete-region (point) (progn (forward-word (- arg)) (point))))
2902 (define-key minibuffer-local-map
2903 [remap backward-kill-word] 'ff/backward-delete-word)
2905 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2907 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2909 ;; Where to save the bookmarks
2911 (setq bookmark-default-file (concat ff/emacs-dir "/bmk")
2912 custom-file (concat ff/emacs-dir "/custom"))
2914 ;; enotes.el is one of my own scripts, check my web page
2916 ;; ** ;; (when (ff/load-or-alert "enotes" t)
2917 ;; ** ;; (setq enotes/file "~/private/enotes"
2918 ;; ** ;; enotes/show-help nil
2919 ;; ** ;; enotes/full-display nil
2920 ;; ** ;; enotes/default-time-fields "9:30")
2922 ;; ** ;; (enotes/init)
2925 (when (ff/load-or-alert "goto-last-change.el")
2926 (define-key global-map [(control -)] 'goto-last-change)
2929 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2930 ;; My private stuff (email adresses, mail filters, etc.)
2931 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2933 (ff/load-or-alert "~/private/emacs.perso.el" t)
2935 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2937 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2939 ;; Runs in server mode, so that emacsclient works
2942 (defun ff/raise-frame-and-give-focus ()
2945 (x-focus-frame (selected-frame))
2946 (set-mouse-pixel-position (selected-frame) 4 4)
2949 ;; Raises the window when the server is invoked
2951 (add-hook 'server-switch-hook 'ff/raise-frame-and-give-focus)