Mercurial > emacs
annotate lisp/gnus/score-mode.el @ 93240:231f72336aed
(vc-git-extra-menu-map): New key map.
(vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
New functions.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 26 Mar 2008 06:35:55 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
17493 | 1 ;;; score-mode.el --- mode for editing Gnus score files |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
2 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1996, 2001, 2002, 2003, 2004, |
79708 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news, mail |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78224
24202b793a08
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
17493 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
17493 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
30 (eval-when-compile (require 'cl)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
31 (require 'mm-util) ; for mm-universal-coding-system |
62791
a03b1bd1f66c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-330
Miles Bader <miles@gnu.org>
parents:
62750
diff
changeset
|
32 (require 'gnus-util) ; for gnus-pp, gnus-run-mode-hooks |
17493 | 33 |
85712
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
34 (defvar gnus-score-edit-done-hook nil |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
35 "*Hook run at the end of closing the score buffer.") |
a3c27999decb
Update Gnus to No Gnus 0.7 from the Gnus CVS trunk
Miles Bader <miles@gnu.org>
parents:
78224
diff
changeset
|
36 |
17493 | 37 (defvar gnus-score-mode-hook nil |
38 "*Hook run in score mode buffers.") | |
39 | |
40 (defvar gnus-score-menu-hook nil | |
41 "*Hook run after creating the score mode menu.") | |
42 | |
43 (defvar gnus-score-edit-exit-function nil | |
44 "Function run on exit from the score buffer.") | |
45 | |
46 (defvar gnus-score-mode-map nil) | |
47 (unless gnus-score-mode-map | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
48 (setq gnus-score-mode-map (make-sparse-keymap)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
49 (set-keymap-parent gnus-score-mode-map emacs-lisp-mode-map) |
17493 | 50 (define-key gnus-score-mode-map "\C-c\C-c" 'gnus-score-edit-exit) |
51 (define-key gnus-score-mode-map "\C-c\C-d" 'gnus-score-edit-insert-date) | |
52 (define-key gnus-score-mode-map "\C-c\C-p" 'gnus-score-pretty-print)) | |
53 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
54 (defvar score-mode-syntax-table |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
55 (let ((table (copy-syntax-table lisp-mode-syntax-table))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
56 (modify-syntax-entry ?| "w" table) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
57 table) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
58 "Syntax table used in score-mode buffers.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
59 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
60 ;; We need this to cope with non-ASCII scoring. |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
61 (defvar score-mode-coding-system mm-universal-coding-system) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
62 |
17493 | 63 ;;;###autoload |
64 (defun gnus-score-mode () | |
65 "Mode for editing Gnus score files. | |
66 This mode is an extended emacs-lisp mode. | |
67 | |
68 \\{gnus-score-mode-map}" | |
69 (interactive) | |
70 (kill-all-local-variables) | |
71 (use-local-map gnus-score-mode-map) | |
72 (gnus-score-make-menu-bar) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
73 (set-syntax-table score-mode-syntax-table) |
17493 | 74 (setq major-mode 'gnus-score-mode) |
75 (setq mode-name "Score") | |
76 (lisp-mode-variables nil) | |
77 (make-local-variable 'gnus-score-edit-exit-function) | |
62791
a03b1bd1f66c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-330
Miles Bader <miles@gnu.org>
parents:
62750
diff
changeset
|
78 (gnus-run-mode-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook)) |
17493 | 79 |
80 (defun gnus-score-make-menu-bar () | |
81 (unless (boundp 'gnus-score-menu) | |
82 (easy-menu-define | |
83 gnus-score-menu gnus-score-mode-map "" | |
84 '("Score" | |
85 ["Exit" gnus-score-edit-exit t] | |
86 ["Insert date" gnus-score-edit-insert-date t] | |
87 ["Format" gnus-score-pretty-print t])) | |
88 (run-hooks 'gnus-score-menu-hook))) | |
89 | |
90 (defun gnus-score-edit-insert-date () | |
91 "Insert date in numerical format." | |
92 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
93 (princ (time-to-days (current-time)) (current-buffer))) |
17493 | 94 |
95 (defun gnus-score-pretty-print () | |
96 "Format the current score file." | |
97 (interactive) | |
98 (goto-char (point-min)) | |
99 (let ((form (read (current-buffer)))) | |
100 (erase-buffer) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
101 (let ((emacs-lisp-mode-syntax-table score-mode-syntax-table)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
102 (gnus-pp form))) |
17493 | 103 (goto-char (point-min))) |
104 | |
105 (defun gnus-score-edit-exit () | |
106 "Stop editing the score file." | |
107 (interactive) | |
108 (unless (file-exists-p (file-name-directory (buffer-file-name))) | |
109 (make-directory (file-name-directory (buffer-file-name)) t)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
110 (let ((coding-system-for-write score-mode-coding-system)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
111 (save-buffer)) |
17493 | 112 (bury-buffer (current-buffer)) |
113 (let ((buf (current-buffer))) | |
114 (when gnus-score-edit-exit-function | |
115 (funcall gnus-score-edit-exit-function)) | |
116 (when (eq buf (current-buffer)) | |
117 (switch-to-buffer (other-buffer (current-buffer)))))) | |
118 | |
119 (provide 'score-mode) | |
120 | |
52401 | 121 ;;; arch-tag: a74a416b-2505-4ad4-bc4e-a418c96b8845 |
17493 | 122 ;;; score-mode.el ends here |