# HG changeset patch # User Juri Linkov # Date 1214854762 0 # Node ID 4dbdccc0a0289a22a332b7f6d04eb3c777c96a20 # Parent 5fd9456fa70da94d940b29ae84aa80161664d52c Bind global keys to ctl-x-r-map in autoload cookies. diff -r 5fd9456fa70d -r 4dbdccc0a028 lisp/rect.el --- a/lisp/rect.el Mon Jun 30 19:38:33 2008 +0000 +++ b/lisp/rect.el Mon Jun 30 19:39:22 2008 +0000 @@ -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: