Spelling fixes.
[bpt/emacs.git] / lisp / emulation / crisp.el
CommitLineData
5d5fa02f 1;;; crisp.el --- CRiSP/Brief Emacs emulator
d21b2085 2
73b0cd50 3;; Copyright (C) 1997-1999, 2001-2011 Free Software Foundation, Inc.
5e33ba39 4
da061c5e 5;; Author: Gary D. Foster <Gary.Foster@Corp.Sun.COM>
7aa5f6cf 6;; Keywords: emulations brief crisp
5e33ba39
RS
7
8;; This file is part of GNU Emacs.
9
ed0f493f 10;; GNU Emacs is free software: you can redistribute it and/or modify
5e33ba39 11;; it under the terms of the GNU General Public License as published by
ed0f493f
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
5e33ba39
RS
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
ed0f493f 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
5e33ba39
RS
22
23;;; Commentary:
24
7aa5f6cf
KH
25;; Keybindings and minor functions to duplicate the functionality and
26;; finger-feel of the CRiSP/Brief editor. This package is designed to
27;; facilitate transitioning from Brief to (XE|E)macs with a minimum
28;; amount of hassles.
5e33ba39 29
7aa5f6cf
KH
30;; Enable this package by putting (require 'crisp) in your .emacs and
31;; use M-x crisp-mode to toggle it on or off.
5e33ba39 32
7aa5f6cf
KH
33;; This package will automatically load the scroll-all.el package if
34;; you put (setq crisp-load-scroll-all t) in your .emacs before
35;; loading this package. If this feature is enabled, it will bind
36;; meta-f1 to the scroll-all mode toggle. The scroll-all package
91af3942 37;; duplicates the scroll-all feature in CRiSP.
5e33ba39 38
7aa5f6cf
KH
39;; Also, the default keybindings for brief/CRiSP override the M-x
40;; key to exit the editor. If you don't like this functionality, you
41;; can prevent this behavior (or redefine it dynamically) by setting
42;; the value of `crisp-override-meta-x' either in your .emacs or
3da6cc26
RS
43;; interactively. The default setting is t, which means that M-x will
44;; by default run `save-buffers-kill-emacs' instead of the command
45;; `execute-extended-command'.
5e33ba39 46
d21b2085
RS
47;; Finally, if you want to change the string displayed in the modeline
48;; when this mode is in effect, override the definition of
49;; `crisp-mode-modeline-string' in your .emacs. The default value is
50;; " *Crisp*" which may be a bit lengthy if you have a lot of things
51;; being displayed there.
52
5e33ba39
RS
53;; All these overrides should go *before* the (require 'crisp) statement.
54
5d5fa02f 55;;; Code:
7aa5f6cf 56
8cb95edf
SM
57(eval-when-compile (require 'cl))
58
7aa5f6cf
KH
59;; local variables
60
0b5bb3ec
SE
61(defgroup crisp nil
62 "Emulator for CRiSP and Brief key bindings."
63 :prefix "crisp-"
64 :group 'emulations)
65
726a4d09
SM
66(defvar crisp-mode-map
67 (let ((map (make-sparse-keymap)))
68 (define-key map [(f1)] 'other-window)
69
70 (define-key map [(f2) (down)] 'enlarge-window)
71 (define-key map [(f2) (left)] 'shrink-window-horizontally)
72 (define-key map [(f2) (right)] 'enlarge-window-horizontally)
73 (define-key map [(f2) (up)] 'shrink-window)
2d197ffb
CY
74 (define-key map [(f3) (down)] 'split-window-below)
75 (define-key map [(f3) (right)] 'split-window-right)
726a4d09
SM
76
77 (define-key map [(f4)] 'delete-window)
78 (define-key map [(control f4)] 'delete-other-windows)
79
80 (define-key map [(f5)] 'search-forward-regexp)
81 (define-key map [(f19)] 'search-forward-regexp)
82 (define-key map [(meta f5)] 'search-backward-regexp)
83
84 (define-key map [(f6)] 'query-replace)
85
86 (define-key map [(f7)] 'start-kbd-macro)
87 (define-key map [(meta f7)] 'end-kbd-macro)
88
89 (define-key map [(f8)] 'call-last-kbd-macro)
90 (define-key map [(meta f8)] 'save-kbd-macro)
91
92 (define-key map [(f9)] 'find-file)
93 (define-key map [(meta f9)] 'load-library)
94
95 (define-key map [(f10)] 'execute-extended-command)
96 (define-key map [(meta f10)] 'compile)
97
98 (define-key map [(SunF37)] 'kill-buffer)
99 (define-key map [(kp-add)] 'crisp-copy-line)
100 (define-key map [(kp-subtract)] 'crisp-kill-line)
101 ;; just to cover all the bases (GNU Emacs, for instance)
102 (define-key map [(f24)] 'crisp-kill-line)
103 (define-key map [(insert)] 'crisp-yank-clipboard)
104 (define-key map [(f16)] 'crisp-set-clipboard) ; copy on Sun5 kbd
105 (define-key map [(f20)] 'crisp-kill-region) ; cut on Sun5 kbd
106 (define-key map [(f18)] 'crisp-yank-clipboard) ; paste on Sun5 kbd
107
108 (define-key map [(control f)] 'fill-paragraph-or-region)
109 (define-key map [(meta d)] (lambda ()
110 (interactive)
111 (beginning-of-line) (kill-line)))
112 (define-key map [(meta e)] 'find-file)
113 (define-key map [(meta g)] 'goto-line)
114 (define-key map [(meta h)] 'help)
115 (define-key map [(meta i)] 'overwrite-mode)
116 (define-key map [(meta j)] 'bookmark-jump)
117 (define-key map [(meta l)] 'crisp-mark-line)
118 (define-key map [(meta m)] 'set-mark-command)
119 (define-key map [(meta n)] 'bury-buffer)
120 (define-key map [(meta p)] 'crisp-unbury-buffer)
121 (define-key map [(meta u)] 'undo)
122 (define-key map [(f14)] 'undo)
123 (define-key map [(meta w)] 'save-buffer)
124 (define-key map [(meta x)] 'crisp-meta-x-wrapper)
125 (define-key map [(meta ?0)] (lambda ()
126 (interactive)
127 (bookmark-set "0")))
128 (define-key map [(meta ?1)] (lambda ()
129 (interactive)
130 (bookmark-set "1")))
131 (define-key map [(meta ?2)] (lambda ()
132 (interactive)
133 (bookmark-set "2")))
134 (define-key map [(meta ?3)] (lambda ()
135 (interactive)
136 (bookmark-set "3")))
137 (define-key map [(meta ?4)] (lambda ()
138 (interactive)
139 (bookmark-set "4")))
140 (define-key map [(meta ?5)] (lambda ()
141 (interactive)
142 (bookmark-set "5")))
143 (define-key map [(meta ?6)] (lambda ()
144 (interactive)
145 (bookmark-set "6")))
146 (define-key map [(meta ?7)] (lambda ()
147 (interactive)
148 (bookmark-set "7")))
149 (define-key map [(meta ?8)] (lambda ()
150 (interactive)
151 (bookmark-set "8")))
152 (define-key map [(meta ?9)] (lambda ()
153 (interactive)
154 (bookmark-set "9")))
155
156 (define-key map [(shift delete)] 'kill-word)
157 (define-key map [(shift backspace)] 'backward-kill-word)
158 (define-key map [(control left)] 'backward-word)
159 (define-key map [(control right)] 'forward-word)
160
161 (define-key map [(home)] 'crisp-home)
162 (define-key map [(control home)] (lambda ()
163 (interactive)
164 (move-to-window-line 0)))
165 (define-key map [(meta home)] 'beginning-of-line)
166 (define-key map [(end)] 'crisp-end)
167 (define-key map [(control end)] (lambda ()
168 (interactive)
169 (move-to-window-line -1)))
170 (define-key map [(meta end)] 'end-of-line)
171 map)
d21b2085 172 "Local keymap for CRiSP emulation mode.
7aa5f6cf
KH
173All the bindings are done here instead of globally to try and be
174nice to the world.")
5e33ba39 175
0b5bb3ec 176(defcustom crisp-mode-modeline-string " *CRiSP*"
1fc7dabf 177 "String to display in the modeline when CRiSP emulation mode is enabled."
0b5bb3ec
SE
178 :type 'string
179 :group 'crisp)
d21b2085 180
3da6cc26
RS
181;;;###autoload
182(defcustom crisp-mode nil
d21b2085
RS
183 "Track status of CRiSP emulation mode.
184A value of nil means CRiSP mode is not enabled. A value of t
3da6cc26
RS
185indicates CRiSP mode is enabled.
186
187Setting this variable directly does not take effect;
188use either M-x customize or the function `crisp-mode'."
189 :set (lambda (symbol value) (crisp-mode (if value 1 0)))
6110ea0a 190 :initialize 'custom-initialize-default
3da6cc26
RS
191 :require 'crisp
192 :version "20.4"
0b5bb3ec
SE
193 :type 'boolean
194 :group 'crisp)
d21b2085 195
0b5bb3ec 196(defcustom crisp-override-meta-x t
1fc7dabf 197 "Controls overriding the normal Emacs M-x key binding in the CRiSP emulator.
28085971 198Normally the CRiSP emulator rebinds M-x to `save-buffers-exit-emacs', and
7aa5f6cf
KH
199provides the usual M-x functionality on the F10 key. If this variable
200is non-nil, M-x will exit Emacs."
0b5bb3ec
SE
201 :type 'boolean
202 :group 'crisp)
5e33ba39 203
7aa5f6cf
KH
204(defcustom crisp-load-scroll-all nil
205 "Controls loading of the Scroll Lock in the CRiSP emulator.
206Its default behavior is to load and enable the Scroll Lock minor mode
5e33ba39
RS
207package when enabling the CRiSP emulator.
208
209If this variable is nil when you start the CRiSP emulator, it
7aa5f6cf 210does not load the scroll-all package."
0b5bb3ec
SE
211 :type 'boolean
212 :group 'crisp)
5e33ba39 213
0b5bb3ec 214(defcustom crisp-load-hook nil
7aa5f6cf 215 "Hooks to run after loading the CRiSP emulator package."
0b5bb3ec
SE
216 :type 'hook
217 :group 'crisp)
d21b2085 218
3da6cc26
RS
219(defcustom crisp-mode-hook nil
220 "Hook run by the function `crisp-mode'."
221 :type 'hook
222 :group 'crisp)
223
224(defconst crisp-version "1.34"
7aa5f6cf 225 "The version of the CRiSP emulator.")
d21b2085 226
7aa5f6cf
KH
227(defconst crisp-mode-help-address "gfoster@suzieq.ml.org"
228 "The email address of the CRiSP mode author/maintainer.")
f4ff0fb4 229
7aa5f6cf
KH
230;; Silence the byte-compiler.
231(defvar crisp-last-last-command nil
28085971 232 "The previous value of `last-command'.")
7aa5f6cf
KH
233
234;; The cut and paste routines are different between XEmacs and Emacs
235;; so we need to set up aliases for the functions.
236
28085971
RS
237(defalias 'crisp-set-clipboard
238 (if (fboundp 'clipboard-kill-ring-save)
239 'clipboard-kill-ring-save
240 'copy-primary-selection))
241
242(defalias 'crisp-kill-region
243 (if (fboundp 'clipboard-kill-region)
244 'clipboard-kill-region
245 'kill-primary-selection))
246
247(defalias 'crisp-yank-clipboard
248 (if (fboundp 'clipboard-yank)
249 'clipboard-yank
250 'yank-clipboard-selection))
7aa5f6cf 251
28085971 252(defun crisp-region-active ()
7aa5f6cf 253 "Compatibility function to test for an active region."
a445370f 254 (if (featurep 'xemacs)
7aa5f6cf
KH
255 zmacs-region-active-p
256 mark-active))
5e33ba39 257
7aa5f6cf
KH
258(defun crisp-version (&optional arg)
259 "Version number of the CRiSP emulator package.
260If ARG, insert results at point."
261 (interactive "P")
262 (let ((foo (concat "CRiSP version " crisp-version)))
263 (if arg
264 (insert (message foo))
265 (message foo))))
266
267(defun crisp-mark-line (arg)
3da6cc26
RS
268 "Set mark at the end of the line.
269Arg works as in `end-of-line'."
7aa5f6cf 270 (interactive "p")
79b65a08
RS
271 (let (newmark)
272 (save-excursion
28085971 273 (end-of-line arg)
79b65a08
RS
274 (setq newmark (point)))
275 (push-mark newmark nil t)))
7aa5f6cf
KH
276
277(defun crisp-kill-line (arg)
278 "Mark and kill line(s).
279Marks from point to end of the current line (honoring prefix arguments),
280copies the region to the kill ring and clipboard, and then deletes it."
281 (interactive "*p")
28085971
RS
282 (if (crisp-region-active)
283 (call-interactively 'crisp-kill-region)
7aa5f6cf 284 (crisp-mark-line arg)
28085971 285 (call-interactively 'crisp-kill-region)))
7aa5f6cf
KH
286
287(defun crisp-copy-line (arg)
288 "Mark and copy line(s).
289Marks from point to end of the current line (honoring prefix arguments),
290copies the region to the kill ring and clipboard, and then deactivates
291the region."
292 (interactive "*p")
28085971
RS
293 (if (crisp-region-active)
294 (call-interactively 'crisp-set-clipboard)
7aa5f6cf 295 (crisp-mark-line arg)
28085971 296 (call-interactively 'crisp-set-clipboard))
7aa5f6cf
KH
297 ;; clear the region after the operation is complete
298 ;; XEmacs does this automagically, Emacs doesn't.
299 (if (boundp 'mark-active)
300 (setq mark-active nil)))
5e33ba39 301
5e33ba39 302(defun crisp-home ()
7aa5f6cf 303 "\"Home\" the point, the way CRiSP would do it.
5e33ba39
RS
304The first use moves point to beginning of the line. Second
305consecutive use moves point to beginning of the screen. Third
306consecutive use moves point to the beginning of the buffer."
307 (interactive nil)
308 (cond
f4ff0fb4
RS
309 ((and (eq last-command 'crisp-home)
310 (eq crisp-last-last-command 'crisp-home))
d21b2085 311 (goto-char (point-min)))
5e33ba39 312 ((eq last-command 'crisp-home)
d21b2085 313 (move-to-window-line 0))
5e33ba39 314 (t
d21b2085 315 (beginning-of-line)))
f4ff0fb4 316 (setq crisp-last-last-command last-command))
5e33ba39
RS
317
318(defun crisp-end ()
7aa5f6cf 319 "\"End\" the point, the way CRiSP would do it.
5e33ba39
RS
320The first use moves point to end of the line. Second
321consecutive use moves point to the end of the screen. Third
322consecutive use moves point to the end of the buffer."
323 (interactive nil)
324 (cond
7aa5f6cf
KH
325 ((and (eq last-command 'crisp-end)
326 (eq crisp-last-last-command 'crisp-end))
d21b2085 327 (goto-char (point-max)))
5e33ba39
RS
328 ((eq last-command 'crisp-end)
329 (move-to-window-line -1)
d21b2085 330 (end-of-line))
5e33ba39 331 (t
d21b2085 332 (end-of-line)))
f4ff0fb4 333 (setq crisp-last-last-command last-command))
5e33ba39 334
7aa5f6cf 335(defun crisp-unbury-buffer ()
3da6cc26 336 "Go back one buffer."
7aa5f6cf
KH
337 (interactive)
338 (switch-to-buffer (car (last (buffer-list)))))
a1506d29 339
7aa5f6cf
KH
340(defun crisp-meta-x-wrapper ()
341 "Wrapper function to conditionally override the normal M-x bindings.
342When `crisp-override-meta-x' is non-nil, M-x will exit Emacs (the
343normal CRiSP binding) and when it is nil M-x will run
344`execute-extended-command' (the normal Emacs binding)."
345 (interactive)
346 (if crisp-override-meta-x
347 (save-buffers-kill-emacs)
348 (call-interactively 'execute-extended-command)))
349
3da6cc26 350;;;###autoload
726a4d09 351(define-minor-mode crisp-mode
ac6c8639
CY
352 "Toggle CRiSP/Brief emulation (CRiSP mode).
353With a prefix argument ARG, enable CRiSP mode if ARG is positive,
354and disable it otherwise. If called from Lisp, enable the mode
355if ARG is omitted or nil."
726a4d09
SM
356 :keymap crisp-mode-map
357 :lighter crisp-mode-modeline-string
3da6cc26 358 (when crisp-mode
8cb95edf
SM
359 ;; Make menu entries show M-u or f14 in preference to C-x u.
360 (put 'undo :advertised-binding
361 (list* [?\M-u] [f14] (get 'undo :advertised-binding)))
6110ea0a
KH
362 ;; Force transient-mark-mode, so that the marking routines work as
363 ;; expected. If the user turns off transient mark mode, most
364 ;; things will still work fine except the crisp-(copy|kill)
365 ;; functions won't work quite as nicely when regions are marked
366 ;; differently and could really confuse people. Caveat emptor.
367 (if (fboundp 'transient-mark-mode)
368 (transient-mark-mode t))
a06e220d
RS
369 (if crisp-load-scroll-all
370 (require 'scroll-all))
371 (if (featurep 'scroll-all)
726a4d09 372 (define-key crisp-mode-map [(meta f1)] 'scroll-all-mode))))
5e33ba39 373
4e968343
DL
374;; People might use Apropos on `brief'.
375;;;###autoload
376(defalias 'brief-mode 'crisp-mode)
377
504feff5 378;; Interaction with other packages.
34e99b2e
KS
379(put 'crisp-home 'CUA 'move)
380(put 'crisp-end 'CUA 'move)
504feff5 381
6110ea0a 382(run-hooks 'crisp-load-hook)
5e33ba39
RS
383(provide 'crisp)
384
8c7d9baf 385;;; crisp.el ends here