diff options
author | Nicolas Dudebout <nicolas.dudebout@gmail.com> | 2016-02-05 21:40:34 -0500 |
---|---|---|
committer | Nicolas Dudebout <nicolas.dudebout@gmail.com> | 2016-02-05 21:40:34 -0500 |
commit | 32748d06571a93928043c73910a65ca64d989467 (patch) | |
tree | 0d4563bf72570dad0dad89a244ee81822f14b294 /lisp/use-package/bind-key.el | |
parent | 2b967a3c18c9d053f7b071e65a273a2ffd23c6c3 (diff) | |
download | emacs-32748d06571a93928043c73910a65ca64d989467.tar.gz emacs-32748d06571a93928043c73910a65ca64d989467.tar.bz2 emacs-32748d06571a93928043c73910a65ca64d989467.zip |
Upper casing Cs corresponding to Ctrl
A number of Cs corresponding to Ctrl have been lower cased in comments in eb6b81dfe.
Diffstat (limited to 'lisp/use-package/bind-key.el')
-rw-r--r-- | lisp/use-package/bind-key.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index ecd0ba1a157..0e2d843a09a 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -35,22 +35,22 @@ ;; ;; (require 'bind-key) ;; -;; (bind-key "c-c x" 'my-ctrl-c-x-command) +;; (bind-key "C-c x" 'my-ctrl-c-x-command) ;; ;; If you want the keybinding to override all minor modes that may also bind ;; the same key, use the `bind-key*' form: ;; -;; (bind-key* "<c-return>" 'other-window) +;; (bind-key* "<C-return>" 'other-window) ;; ;; If you want to rebind a key only in a particular keymap, use: ;; -;; (bind-key "c-c x" 'my-ctrl-c-x-command some-other-mode-map) +;; (bind-key "C-c x" 'my-ctrl-c-x-command some-other-mode-map) ;; ;; To unbind a key within a keymap (for example, to stop your favorite major ;; mode from changing a binding that you don't want to override everywhere), ;; use `unbind-key': ;; -;; (unbind-key "c-c x" some-other-mode-map) +;; (unbind-key "C-c x" some-other-mode-map) ;; ;; To bind multiple keys at once, or set up a prefix map, a `bind-keys' macro ;; is provided. It accepts keyword arguments, please see its documentation |