diff options
author | Jesús <heckyel@hyperbola.info> | 2021-11-02 12:27:03 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-11-02 12:27:03 -0500 |
commit | 9fd02a16f81d78846f3449ce78e5b49c1e73f71b (patch) | |
tree | 223d2799d9c97eea88d66e3123a0f15d8e25eeb6 | |
parent | 085e476d0f9df6bc57be723f3b51c9089791b39c (diff) | |
download | emacs-personal-9fd02a16f81d78846f3449ce78e5b49c1e73f71b.tar.lz emacs-personal-9fd02a16f81d78846f3449ce78e5b49c1e73f71b.tar.xz emacs-personal-9fd02a16f81d78846f3449ce78e5b49c1e73f71b.zip |
Add kbd for mc
-rw-r--r-- | modules/init-gui.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/init-gui.el b/modules/init-gui.el index b5cb49a..521866b 100644 --- a/modules/init-gui.el +++ b/modules/init-gui.el @@ -65,6 +65,10 @@ (global-set-key (kbd "<f12>") 'revert-buffer-no-confirm) (global-set-key (kbd "s-h") 'global-hl-line-mode) ; Highlight current line (global-set-key (kbd "M-c") nil) ; disable capitalize-word +;; muti-curses +(global-set-key (kbd "C->") 'mc/mark-next-like-this) +(global-set-key (kbd "C-<") 'mc/mark-previous-like-this) +(global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this) ;;--------------------------------------------------------------------------- ;; FullScreen |