comparison lisp/emulation/vip.el @ 73742:7c812bf3912c

(vip-emacs-local-map, vip-change-mode-to-emacs): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 06 Nov 2006 02:33:15 +0000
parents 067115a6e738
children 1d4b1a32fd66 02cf29720f31
comparison
equal deleted inserted replaced
73741:02e5b380f763 73742:7c812bf3912c
43 :group 'emulations) 43 :group 'emulations)
44 44
45 ;; external variables 45 ;; external variables
46 46
47 (defvar vip-emacs-local-map nil 47 (defvar vip-emacs-local-map nil
48 "Local map used in emacs mode. (Buffer-specific.)") 48 "Local map used in Emacs mode. (Buffer-specific.)")
49 49
50 (defvar vip-insert-local-map nil 50 (defvar vip-insert-local-map nil
51 "Local map used in insert command mode. (Buffer-specific.)") 51 "Local map used in insert command mode. (Buffer-specific.)")
52 52
53 (make-variable-buffer-local 'vip-emacs-local-map) 53 (make-variable-buffer-local 'vip-emacs-local-map)
445 "Change mode to insert mode." 445 "Change mode to insert mode."
446 (interactive) 446 (interactive)
447 (vip-change-mode 'insert-mode)) 447 (vip-change-mode 'insert-mode))
448 448
449 (defun vip-change-mode-to-emacs () 449 (defun vip-change-mode-to-emacs ()
450 "Change mode to emacs mode." 450 "Change mode to Emacs mode."
451 (interactive) 451 (interactive)
452 (vip-change-mode 'emacs-mode)) 452 (vip-change-mode 'emacs-mode))
453 453
454 454
455 ;; escape to emacs mode temporarily 455 ;; escape to emacs mode temporarily