summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2008-06-30 19:39:22 +0000
committerJuri Linkov <juri@jurta.org>2008-06-30 19:39:22 +0000
commit371ea7c5c761e1fc206eb1411dfa13b3ec62e2bf (patch)
tree37223ee48a7de0e415bdd494bff22c2e12da511c /lisp
parent6946b5be3c0c0f09faf250a06ade7db40bc99f5a (diff)
downloademacs-371ea7c5c761e1fc206eb1411dfa13b3ec62e2bf.tar.gz
Bind global keys to ctl-x-r-map in autoload cookies.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/rect.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/rect.el b/lisp/rect.el
index 69bcd8985dc..594405716ee 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -31,6 +31,14 @@
;; intrusive and fill lines with whitespaces only when needed. A few functions
;; are untouched though, as noted above their definition.
+;;; Global key bindings
+
+;;;###autoload (define-key ctl-x-r-map "c" 'clear-rectangle)
+;;;###autoload (define-key ctl-x-r-map "k" 'kill-rectangle)
+;;;###autoload (define-key ctl-x-r-map "d" 'delete-rectangle)
+;;;###autoload (define-key ctl-x-r-map "y" 'yank-rectangle)
+;;;###autoload (define-key ctl-x-r-map "o" 'open-rectangle)
+;;;###autoload (define-key ctl-x-r-map "t" 'string-rectangle)
;;; Code: