comparison lisp/emulation/viper-keym.el @ 10789:af7c0bb1059f

Initial revision
author Karl Heuer <kwzh@gnu.org>
date Mon, 20 Feb 1995 23:15:10 +0000
parents
children d1f620273acb
comparison
equal deleted inserted replaced
10788:61c7b37349d2 10789:af7c0bb1059f
1 ;;; viper-keym.el -- Main Viper keymaps
2
3 ;; This file is part of GNU Emacs.
4
5 ;; GNU Emacs is free software; you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation; either version 2, or (at your option)
8 ;; any later version.
9
10 ;; GNU Emacs is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;; GNU General Public License for more details.
14
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with GNU Emacs; see the file COPYING. If not, write to
17 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18
19
20 (require 'viper-util)
21
22 ;;; Variables
23
24 ;;; Keymaps
25
26 ;; Keymaps for vital things like \e and C-z.
27 ;; Not for users
28 (defvar vip-vi-intercept-map (make-sparse-keymap))
29 (defvar vip-insert-intercept-map (make-sparse-keymap))
30 (defvar vip-emacs-intercept-map (make-sparse-keymap))
31
32 (vip-deflocalvar vip-vi-local-user-map (make-sparse-keymap)
33 "Keymap for user-defined local bindings.
34 Useful for changing bindings such as ZZ in certain major modes.
35 For instance, in letter-mode, one may want to bind ZZ to
36 mh-send-letter. In a newsreader such as gnus, tin, or rn, ZZ could be bound
37 to save-buffers-kill-emacs then post article, etc.")
38 (put 'vip-vi-local-user-map 'permanent-local t)
39
40 (defvar vip-vi-global-user-map (make-sparse-keymap)
41 "Keymap for user-defined global bindings.
42 These bindings are seen in all Viper buffers.")
43
44 (defvar vip-vi-basic-map (make-keymap)
45 "This is the main keymap in effect in Viper's Vi state.
46 This map is global, shared by all buffers.")
47
48 (defvar vip-vi-kbd-map (make-sparse-keymap)
49 "This keymap keeps keyboard macros defined via the :map command.")
50
51 (defvar vip-vi-diehard-map (make-sparse-keymap)
52 "This keymap is in use when the user asks Viper to simulate Vi very closely.
53 This happens when vip-expert-level is 1 or 2. See vip-set-expert-level.")
54
55
56 (vip-deflocalvar vip-insert-local-user-map (make-sparse-keymap)
57 "Auxiliary map for per-buffer user-defined keybindings in Insert state.")
58 (put 'vip-insert-local-user-map 'permanent-local t)
59
60 (defvar vip-insert-global-user-map (make-sparse-keymap)
61 "Auxiliary map for global user-defined bindings in Insert state.")
62
63 (defvar vip-insert-basic-map (make-sparse-keymap)
64 "The basic insert-mode keymap.")
65
66 (defvar vip-insert-diehard-map (make-keymap)
67 "Map used when user wants vi-style keys in insert mode.
68 Most of the Emacs keys are suppressed. This map overshadows
69 vip-insert-basic-map. Not recommended, except for novice users.")
70
71 (defvar vip-insert-kbd-map (make-sparse-keymap)
72 "This keymap keeps VI-style kbd macros for insert mode.")
73
74 (defvar vip-replace-map (make-sparse-keymap)
75 "Map used in Viper's replace state.")
76
77 (defvar vip-emacs-global-user-map (make-sparse-keymap)
78 "Auxiliary map for global user-defined bindings in Emacs state.")
79
80 (defvar vip-emacs-kbd-map (make-sparse-keymap)
81 "This keymap keeps Vi-style kbd macros for emacs mode.")
82
83 (vip-deflocalvar vip-emacs-local-user-map (make-sparse-keymap)
84 "Auxiliary map for local user-defined bindings in Emacs state.")
85 (put 'vip-emacs-local-user-map 'permanent-local t)
86
87 ;; This keymap should stay empty
88 (defvar vip-empty-keymap (make-sparse-keymap))
89
90
91 ;;; Variables used by minor modes
92
93 ;; Association list of the form
94 ;; ((major-mode . keymap) (major-mode . keymap) ...)
95 ;; Viper uses these keymaps to make user-requested adjustments
96 ;; to its Vi state in various major modes.")
97 (defvar vip-vi-state-modifier-alist nil)
98
99 ;; Association list of the form
100 ;; ((major-mode . keymap) (major-mode . keymap) ...)
101 ;; Viper uses these keymaps to make user-requested adjustments
102 ;; to its Insert state in various major modes.")
103 (defvar vip-insert-state-modifier-alist nil)
104
105 ;; Association list of the form
106 ;; ((major-mode . keymap) (major-mode . keymap) ...)
107 ;; Viper uses these keymaps to make user-requested adjustments
108 ;; to its Emacs state in various major modes.
109 (defvar vip-emacs-state-modifier-alist nil)
110
111 ;; Tells vip-add-local-keys to create a new vip-vi-local-user-map for new
112 ;; buffers. Not a user option.
113 (vip-deflocalvar vip-need-new-vi-local-map t "")
114 (put 'vip-need-new-vi-local-map 'permanent-local t)
115
116 ;; Tells vip-add-local-keys to create a new vip-insert-local-user-map for new
117 ;; buffers. Not a user option.
118 (vip-deflocalvar vip-need-new-insert-local-map t "")
119 (put 'vip-need-new-insert-local-map 'permanent-local t)
120
121 ;; Tells vip-add-local-keys to create a new vip-emacs-local-user-map for new
122 ;; buffers. Not a user option.
123 (vip-deflocalvar vip-need-new-emacs-local-map t "")
124 (put 'vip-need-new-emacs-local-map 'permanent-local t)
125
126
127
128 ;; Insert mode keymap
129
130 ;; for novice users, pretend you are the real vi.
131 (define-key vip-insert-diehard-map "\t" 'vip-insert-tab)
132 (define-key vip-insert-diehard-map "\C-a" 'self-insert-command)
133 (define-key vip-insert-diehard-map "\C-b" 'self-insert-command)
134 (define-key vip-insert-diehard-map "\C-c" 'vip-change-state-to-vi)
135 (define-key vip-insert-diehard-map "\C-e" 'self-insert-command)
136 (define-key vip-insert-diehard-map "\C-f" 'self-insert-command)
137 (define-key vip-insert-diehard-map "\C-g" 'self-insert-command)
138 (define-key vip-insert-diehard-map "\C-i" 'self-insert-command)
139 (define-key vip-insert-diehard-map "\C-k" 'self-insert-command)
140 (define-key vip-insert-diehard-map "\C-l" 'self-insert-command)
141 (define-key vip-insert-diehard-map "\C-n" 'self-insert-command)
142 (define-key vip-insert-diehard-map "\C-o" 'self-insert-command)
143 (define-key vip-insert-diehard-map "\C-p" 'self-insert-command)
144 (define-key vip-insert-diehard-map "\C-q" 'self-insert-command)
145 (define-key vip-insert-diehard-map "\C-r" 'self-insert-command)
146 (define-key vip-insert-diehard-map "\C-s" 'self-insert-command)
147 (define-key vip-insert-diehard-map "\C-u" 'vip-erase-line)
148 (define-key vip-insert-diehard-map "\C-x" 'self-insert-command)
149 (define-key vip-insert-diehard-map "\C-y" 'self-insert-command)
150 (define-key vip-insert-diehard-map "\C-z" 'self-insert-command)
151 (define-key vip-insert-diehard-map "\C-]" 'self-insert-command)
152 (define-key vip-insert-diehard-map "\C-_" 'self-insert-command)
153
154 (let ((i ?\ ))
155 (while (<= i ?~)
156 (define-key vip-insert-diehard-map (make-string 1 i) 'self-insert-command)
157 (setq i (1+ i))))
158
159 ;; Insert mode map when user wants emacs style
160 (define-key vip-insert-basic-map "\C-d" 'vip-backward-indent)
161 (define-key vip-insert-basic-map "\C-w" 'vip-delete-backward-word)
162 (define-key vip-insert-basic-map "\C-t" 'vip-forward-indent)
163 (define-key vip-insert-basic-map
164 (if vip-xemacs-p [(shift tab)] [S-tab]) 'vip-insert-tab)
165 (define-key vip-insert-basic-map "\C-v" 'quoted-insert)
166 (define-key vip-insert-basic-map "\C-?" 'vip-del-backward-char-in-insert)
167 (define-key vip-insert-basic-map "\C-c\M-p"
168 'vip-insert-prev-from-insertion-ring)
169 (define-key vip-insert-basic-map "\C-c\M-n"
170 'vip-insert-next-from-insertion-ring)
171
172
173 ;; Replace keymap
174 (define-key vip-replace-map "\C-t" 'vip-forward-indent)
175 (define-key vip-replace-map "\C-j" 'vip-replace-state-exit-cmd)
176 (define-key vip-replace-map "\C-m" 'vip-replace-state-exit-cmd)
177 (define-key vip-replace-map "\C-?" 'vip-del-backward-char-in-replace)
178
179
180
181 ;; Vi keymaps
182
183 (define-key vip-vi-basic-map "\C-^"
184 (function (lambda () (interactive) (vip-ex "e#"))))
185 (define-key vip-vi-basic-map "\C-b" 'vip-scroll-back)
186 (define-key vip-vi-basic-map "\C-d" 'vip-scroll-up)
187 (define-key vip-vi-basic-map "\C-e" 'vip-scroll-up-one)
188 (define-key vip-vi-basic-map "\C-f" 'vip-scroll)
189 (define-key vip-vi-basic-map "\C-m" 'vip-next-line-at-bol)
190 (define-key vip-vi-basic-map "\C-u" 'vip-scroll-down)
191 (define-key vip-vi-basic-map "\C-y" 'vip-scroll-down-one)
192 (define-key vip-vi-basic-map "\C-s" 'vip-isearch-forward)
193 (define-key vip-vi-basic-map "\C-r" 'vip-isearch-backward)
194 ;(define-key vip-vi-basic-map "\C-\\" 'universal-argument)
195 (define-key vip-vi-basic-map "\C-c/" 'vip-toggle-search-style)
196 (define-key vip-vi-basic-map "\C-cg" 'vip-info-on-file)
197
198 (define-key vip-vi-basic-map "\C-c\M-p" 'vip-prev-destructive-command)
199 (define-key vip-vi-basic-map "\C-c\M-n" 'vip-next-destructive-command)
200
201
202 (define-key vip-vi-basic-map " " 'vip-forward-char)
203 (define-key vip-vi-basic-map "!" 'vip-command-argument)
204 (define-key vip-vi-basic-map "\"" 'vip-command-argument)
205 (define-key vip-vi-basic-map "#" 'vip-command-argument)
206 (define-key vip-vi-basic-map "$" 'vip-goto-eol)
207 (define-key vip-vi-basic-map "%" 'vip-paren-match)
208 (define-key vip-vi-basic-map "&"
209 (function (lambda () (interactive) (vip-ex "&"))))
210 (define-key vip-vi-basic-map "'" 'vip-goto-mark-and-skip-white)
211 (define-key vip-vi-basic-map "(" 'vip-backward-sentence)
212 (define-key vip-vi-basic-map ")" 'vip-forward-sentence)
213 (define-key vip-vi-basic-map "*" 'call-last-kbd-macro)
214 (define-key vip-vi-basic-map "+" 'vip-next-line-at-bol)
215 (define-key vip-vi-basic-map "," 'vip-repeat-find-opposite)
216 (define-key vip-vi-basic-map "-" 'vip-previous-line-at-bol)
217 (define-key vip-vi-basic-map "." 'vip-repeat)
218 (define-key vip-vi-basic-map "/" 'vip-search-forward)
219
220 (define-key vip-vi-basic-map "0" 'vip-beginning-of-line)
221 (define-key vip-vi-basic-map "1" 'vip-digit-argument)
222 (define-key vip-vi-basic-map "2" 'vip-digit-argument)
223 (define-key vip-vi-basic-map "3" 'vip-digit-argument)
224 (define-key vip-vi-basic-map "4" 'vip-digit-argument)
225 (define-key vip-vi-basic-map "5" 'vip-digit-argument)
226 (define-key vip-vi-basic-map "6" 'vip-digit-argument)
227 (define-key vip-vi-basic-map "7" 'vip-digit-argument)
228 (define-key vip-vi-basic-map "8" 'vip-digit-argument)
229 (define-key vip-vi-basic-map "9" 'vip-digit-argument)
230
231 (define-key vip-vi-basic-map ":" 'vip-ex)
232 (define-key vip-vi-basic-map ";" 'vip-repeat-find)
233 (define-key vip-vi-basic-map "<" 'vip-command-argument)
234 (define-key vip-vi-basic-map "=" 'vip-command-argument)
235 (define-key vip-vi-basic-map ">" 'vip-command-argument)
236 (define-key vip-vi-basic-map "?" 'vip-search-backward)
237 (define-key vip-vi-basic-map "@" 'vip-register-macro)
238
239 (define-key vip-vi-basic-map "A" 'vip-Append)
240 (define-key vip-vi-basic-map "B" 'vip-backward-Word)
241 (define-key vip-vi-basic-map "C" 'vip-change-to-eol)
242 (define-key vip-vi-basic-map "D" 'vip-kill-line)
243 (define-key vip-vi-basic-map "E" 'vip-end-of-Word)
244 (define-key vip-vi-basic-map "F" 'vip-find-char-backward)
245 (define-key vip-vi-basic-map "G" 'vip-goto-line)
246 (define-key vip-vi-basic-map "H" 'vip-window-top)
247 (define-key vip-vi-basic-map "I" 'vip-Insert)
248 (define-key vip-vi-basic-map "J" 'vip-join-lines)
249 (define-key vip-vi-basic-map "K" 'vip-nil)
250 (define-key vip-vi-basic-map "L" 'vip-window-bottom)
251 (define-key vip-vi-basic-map "M" 'vip-window-middle)
252 (define-key vip-vi-basic-map "N" 'vip-search-Next)
253 (define-key vip-vi-basic-map "O" 'vip-Open-line)
254 (define-key vip-vi-basic-map "P" 'vip-Put-back)
255 (define-key vip-vi-basic-map "Q" 'vip-query-replace)
256 (define-key vip-vi-basic-map "R" 'vip-overwrite)
257 (define-key vip-vi-basic-map "S" 'vip-substitute-line)
258 (define-key vip-vi-basic-map "T" 'vip-goto-char-backward)
259 (define-key vip-vi-basic-map "U" 'vip-undo)
260 (define-key vip-vi-basic-map "V" 'find-file-other-window)
261 (define-key vip-vi-basic-map "W" 'vip-forward-Word)
262 (define-key vip-vi-basic-map "X" 'vip-delete-backward-char)
263 (define-key vip-vi-basic-map "Y" 'vip-yank-line)
264 (define-key vip-vi-basic-map "ZZ" 'vip-save-kill-buffer)
265
266 (define-key vip-vi-basic-map "\\" 'vip-escape-to-emacs)
267 (define-key vip-vi-basic-map "[" 'vip-brac-function)
268 (define-key vip-vi-basic-map "]" 'vip-ket-function)
269 (define-key vip-vi-basic-map "_" 'vip-alternate-ESC)
270 (define-key vip-vi-basic-map "^" 'vip-bol-and-skip-white)
271 (define-key vip-vi-basic-map "`" 'vip-goto-mark)
272
273 (define-key vip-vi-basic-map "a" 'vip-append)
274 (define-key vip-vi-basic-map "b" 'vip-backward-word)
275 (define-key vip-vi-basic-map "c" 'vip-command-argument)
276 (define-key vip-vi-basic-map "d" 'vip-command-argument)
277 (define-key vip-vi-basic-map "e" 'vip-end-of-word)
278 (define-key vip-vi-basic-map "f" 'vip-find-char-forward)
279 (define-key vip-vi-basic-map "g" 'vip-nil)
280 (define-key vip-vi-basic-map "h" 'vip-backward-char)
281 (define-key vip-vi-basic-map "i" 'vip-insert)
282 (define-key vip-vi-basic-map "j" 'vip-next-line)
283 (define-key vip-vi-basic-map "k" 'vip-previous-line)
284 (define-key vip-vi-basic-map "l" 'vip-forward-char)
285 (define-key vip-vi-basic-map "m" 'vip-mark-point)
286 (define-key vip-vi-basic-map "n" 'vip-search-next)
287 (define-key vip-vi-basic-map "o" 'vip-open-line)
288 (define-key vip-vi-basic-map "p" 'vip-put-back)
289 (define-key vip-vi-basic-map "q" 'vip-nil)
290 (define-key vip-vi-basic-map "r" 'vip-replace-char)
291 (define-key vip-vi-basic-map "s" 'vip-substitute)
292 (define-key vip-vi-basic-map "t" 'vip-goto-char-forward)
293 (define-key vip-vi-basic-map "u" 'vip-undo)
294 (define-key vip-vi-basic-map "v" 'find-file)
295 (define-key vip-vi-basic-map "\C-v" 'vip-find-file-other-frame)
296 (define-key vip-vi-basic-map "w" 'vip-forward-word)
297 (define-key vip-vi-basic-map "x" 'vip-delete-char)
298 (define-key vip-vi-basic-map "y" 'vip-command-argument)
299 (define-key vip-vi-basic-map "zH" 'vip-line-to-top)
300 (define-key vip-vi-basic-map "zM" 'vip-line-to-middle)
301 (define-key vip-vi-basic-map "zL" 'vip-line-to-bottom)
302 (define-key vip-vi-basic-map "z\C-m" 'vip-line-to-top)
303 (define-key vip-vi-basic-map "z." 'vip-line-to-middle)
304 (define-key vip-vi-basic-map "z-" 'vip-line-to-bottom)
305
306 (define-key vip-vi-basic-map "{" 'vip-backward-paragraph)
307 (define-key vip-vi-basic-map "|" 'vip-goto-col)
308 (define-key vip-vi-basic-map "}" 'vip-forward-paragraph)
309 (define-key vip-vi-basic-map "~" 'vip-toggle-case)
310 (define-key vip-vi-basic-map "\C-?" 'vip-backward-char)
311
312 ;;; Escape from Emacs to Vi for one command
313 (global-set-key "\M-\C-z" 'vip-escape-to-vi) ;; in emacs-state
314
315 ;;; This is vip-vi-diehard-map. Used when vip-vi-diehard-minor-mode is on.
316
317 (define-key vip-vi-diehard-map "\C-a" 'vip-nil)
318 (define-key vip-vi-diehard-map "\C-c" 'vip-nil)
319 (define-key vip-vi-diehard-map "\C-g" 'vip-info-on-file)
320 (define-key vip-vi-diehard-map "\C-i" 'vip-nil)
321 (define-key vip-vi-diehard-map "\C-k" 'vip-nil)
322 (define-key vip-vi-diehard-map "\C-l" 'redraw-display)
323 (define-key vip-vi-diehard-map "\C-n" 'vip-next-line)
324 (define-key vip-vi-diehard-map "\C-o" 'vip-nil)
325 (define-key vip-vi-diehard-map "\C-p" 'vip-previous-line)
326 (define-key vip-vi-diehard-map "\C-q" 'vip-nil)
327 (define-key vip-vi-diehard-map "\C-r" 'redraw-display)
328 (define-key vip-vi-diehard-map "\C-s" 'vip-nil)
329 (define-key vip-vi-diehard-map "\C-t" 'vip-nil)
330 (define-key vip-vi-diehard-map "\C-v" 'vip-nil)
331 (define-key vip-vi-diehard-map "\C-w" 'vip-nil)
332 (define-key vip-vi-diehard-map "@" 'vip-nil)
333 (define-key vip-vi-diehard-map "*" 'vip-nil)
334 (define-key vip-vi-diehard-map "#" 'vip-nil)
335 (define-key vip-vi-diehard-map "\C-_" 'vip-nil)
336 (define-key vip-vi-diehard-map "\C-]" 'vip-nil);; This is actually tags.
337
338
339 ;;; Minibuffer keymap
340
341
342 (defvar vip-minibuffer-map (make-sparse-keymap)
343 "Keymap used to modify keys when Minibuffer is in Insert state.")
344
345 (define-key vip-minibuffer-map "\C-m" 'vip-exit-minibuffer)
346 (define-key vip-minibuffer-map "\C-j" 'vip-exit-minibuffer)
347
348 ;; Map used to read Ex-style commands.
349 (defvar vip-ex-cmd-map (make-sparse-keymap))
350 (define-key vip-ex-cmd-map " " 'ex-cmd-read-exit)
351 (define-key vip-ex-cmd-map "\t" 'ex-cmd-complete)
352
353 ;; Keymap for reading file names in Ex-style commands.
354 (defvar ex-read-filename-map (make-sparse-keymap))
355 (define-key ex-read-filename-map " " 'vip-complete-filename-or-exit)
356
357
358
359
360 ;;; Code
361
362 (defun vip-add-local-keys (state alist)
363 "Override some vi-state or insert-state bindings in the current buffer.
364 The effect is seen in the current buffer only.
365 Useful for customizing mailer buffers, gnus, etc.
366 STATE is 'vi-state, 'insert-state, or 'emacs-state
367 ALIST is of the form ((key . func) (key . func) ...)
368 Normally, this would be called from a hook to a major mode or
369 on a per buffer basis.
370 Usage:
371 (vip-add-local-keys state '((key-str . func) (key-str . func)...)) "
372
373 (let (map)
374 (cond ((eq state 'vi-state)
375 (if vip-need-new-vi-local-map
376 (setq vip-vi-local-user-map (make-sparse-keymap)))
377 (setq vip-need-new-vi-local-map nil
378 map vip-vi-local-user-map))
379 ((eq state 'insert-state)
380 (if vip-need-new-insert-local-map
381 (setq vip-insert-local-user-map (make-sparse-keymap)))
382 (setq vip-need-new-insert-local-map nil
383 map vip-insert-local-user-map))
384 ((eq state 'emacs-state)
385 (if vip-need-new-emacs-local-map
386 (setq vip-emacs-local-user-map (make-sparse-keymap)))
387 (setq vip-need-new-emacs-local-map nil
388 map vip-emacs-local-user-map))
389 (t
390 (error
391 "Invalid state in vip-add-local-keys: %S. Valid states: vi-state, insert-state or emacs-state" state)))
392
393 (vip-modify-keymap map alist)
394 (vip-normalize-minor-mode-map-alist)
395 (vip-set-mode-vars-for vip-current-state)))
396
397
398 (defun vip-modify-major-mode (mode state keymap)
399 "Modify key bindings in a major-mode in a Viper state using a keymap.
400
401 If the default for a major mode is emacs-state, then modifications to this
402 major mode may not take effect until the buffer switches state to Vi,
403 Insert or Emacs. If this happens, add vip-change-state-to-emacs to this
404 major mode's hook. If no such hook exists, you may have to put an advice on
405 the function that invokes the major mode. See vip-set-hooks for hints.
406
407 The above needs not to be done for major modes that come up in Vi or Insert
408 state by default.
409
410 Arguments: (major-mode vip-state keymap)"
411 (let ((alist
412 (cond ((eq state 'vi-state) 'vip-vi-state-modifier-alist)
413 ((eq state 'insert-state) 'vip-insert-state-modifier-alist)
414 ((eq state 'emacs-state) 'vip-emacs-state-modifier-alist)))
415 elt)
416 (if (setq elt (assoc mode (eval alist)))
417 (set alist (delq elt (eval alist))))
418 (set alist (cons (cons mode keymap) (eval alist)))
419
420 ;; Normalization usually doesn't help here, since one needs to
421 ;; normalize in the actual buffer where changes to the keymap are
422 ;; to take place. However, it doesn't hurt, and it helps whenever this
423 ;; function is actually called from within the right buffer.
424 (vip-normalize-minor-mode-map-alist)
425
426 (vip-set-mode-vars-for vip-current-state)))
427
428
429 (defun vip-debug-keymaps ()
430 "Displays variables that control Viper's keymaps."
431 (interactive)
432 (with-output-to-temp-buffer " *vip-debug*"
433 (princ (format "Buffer name: %s\n\n" (buffer-name)))
434 (princ "Variables: \n")
435 (princ (format "major-mode: %S\n" major-mode))
436 (princ (format "vip-current-state: %S\n" vip-current-state))
437 (princ (format "vip-mode-string: %S\n\n" vip-mode-string))
438 (princ (format "vip-vi-intercept-minor-mode: %S\n"
439 vip-vi-intercept-minor-mode))
440 (princ (format "vip-insert-intercept-minor-mode: %S\n"
441 vip-insert-intercept-minor-mode))
442 (princ (format "vip-emacs-intercept-minor-mode: %S\n"
443 vip-emacs-intercept-minor-mode))
444 (princ (format "vip-vi-minibuffer-minor-mode: %S\n"
445 vip-vi-minibuffer-minor-mode))
446 (princ (format "vip-insert-minibuffer-minor-mode: %S\n\n"
447 vip-insert-minibuffer-minor-mode))
448 (princ (format "vip-vi-local-user-minor-mode: %S\n"
449 vip-vi-local-user-minor-mode))
450 (princ (format "vip-vi-global-user-minor-mode: %S\n"
451 vip-vi-global-user-minor-mode))
452 (princ (format "vip-vi-kbd-minor-mode: %S\n" vip-vi-kbd-minor-mode))
453 (princ (format "vip-vi-state-modifier-minor-mode: %S\n"
454 vip-vi-state-modifier-minor-mode))
455 (princ (format "vip-vi-diehard-minor-mode: %S\n"
456 vip-vi-diehard-minor-mode))
457 (princ (format "vip-vi-basic-minor-mode: %S\n" vip-vi-basic-minor-mode))
458 (princ (format "vip-replace-minor-mode: %S\n" vip-replace-minor-mode))
459 (princ (format "vip-insert-local-user-minor-mode: %S\n"
460 vip-insert-local-user-minor-mode))
461 (princ (format "vip-insert-global-user-minor-mode: %S\n"
462 vip-insert-global-user-minor-mode))
463 (princ (format "vip-insert-kbd-minor-mode: %S\n"
464 vip-insert-kbd-minor-mode))
465 (princ (format "vip-insert-state-modifier-minor-mode: %S\n"
466 vip-insert-state-modifier-minor-mode))
467 (princ (format "vip-insert-diehard-minor-mode: %S\n"
468 vip-insert-diehard-minor-mode))
469 (princ (format "vip-insert-basic-minor-mode: %S\n"
470 vip-insert-basic-minor-mode))
471 (princ (format "vip-emacs-local-user-minor-mode: %S\n"
472 vip-emacs-local-user-minor-mode))
473 (princ (format "vip-emacs-kbd-minor-mode: %S\n"
474 vip-emacs-kbd-minor-mode))
475 (princ (format "vip-emacs-global-user-minor-mode: %S\n"
476 vip-emacs-global-user-minor-mode))
477 (princ (format "vip-emacs-state-modifier-minor-mode: %S\n"
478 vip-emacs-state-modifier-minor-mode))
479
480 (princ (format "\nvip-expert-level %S\n" vip-expert-level))
481 (princ (format "vip-no-multiple-ESC %S\n" vip-no-multiple-ESC))
482 (princ (format "vip-always %S\n" vip-always))
483 (princ (format "vip-ex-style-motion %S\n"
484 vip-ex-style-motion))
485 (princ (format "vip-ex-style-editing-in-insert %S\n"
486 vip-ex-style-editing-in-insert))
487 (princ (format "vip-want-emacs-keys-in-vi %S\n"
488 vip-want-emacs-keys-in-vi))
489 (princ (format "vip-want-emacs-keys-in-insert %S\n"
490 vip-want-emacs-keys-in-insert))
491 (princ (format "vip-want-ctl-h-help %S\n" vip-want-ctl-h-help))
492
493 (princ "\n\n\n")
494 (princ (format "Default value for minor-mode-map-alist: \n%S\n\n"
495 (default-value 'minor-mode-map-alist)))
496 (princ (format "Actual value for minor-mode-map-alist: \n%S\n"
497 minor-mode-map-alist))
498 ))
499
500
501 ;;; Keymap utils
502
503 (defun vip-add-keymap (mapsrc mapdst)
504 "Add contents of mapsrc to mapdst. It is assumed that mapsrc is sparse."
505 (if vip-xemacs-p
506 (map-keymap (function (lambda (key binding)
507 (define-key mapdst key binding)))
508 mapsrc)
509 (mapcar
510 (function (lambda (p)
511 (define-key mapdst (vector (car p)) (cdr p))
512 ))
513 (cdr mapsrc))))
514
515 (defun vip-modify-keymap (map alist)
516 "Modifies MAP with bindings specified in the ALIST. The alist has the
517 form ((key . function) (key . function) ... )."
518 (mapcar (function (lambda (p)
519 (define-key map (eval (car p)) (cdr p))))
520 alist))
521
522
523 (provide 'viper-keym)
524
525 ;;; viper-keym.el ends here