Fix extended-command

This commit is contained in:
Peter Selby 2021-01-22 11:02:02 -06:00
parent a49d032d54
commit bc8224ec11
1 changed files with 6 additions and 3 deletions

View File

@ -30,7 +30,7 @@
(:prefix ("l" . "<localleader>")) ; bound locally (:prefix ("l" . "<localleader>")) ; bound locally
(:prefix ("!" . "checkers")) ; bound by flycheck (:prefix ("!" . "checkers")) ; bound by flycheck
:desc "Extended command" "C-e" #'execute-extended-command :desc "Extended command" "C-m" #'execute-extended-command
:desc "Kill whitespace" ";" #'kill-whitespace :desc "Kill whitespace" ";" #'kill-whitespace
:desc "Toggle readonly mode" "R" #'read-only-mode :desc "Toggle readonly mode" "R" #'read-only-mode
@ -590,7 +590,7 @@
(map! :leader (map! :leader
(:when (featurep! :editor fold) (:when (featurep! :editor fold)
(:prefix ("C-f" . "fold") (:prefix ("C-F" . "fold")
"C-d" #'vimish-fold-delete "C-d" #'vimish-fold-delete
"C-a C-d" #'vimish-fold-delete-all "C-a C-d" #'vimish-fold-delete-all
"C-f" #'+fold/toggle "C-f" #'+fold/toggle
@ -599,7 +599,7 @@
"C-a C-u" #'+fold/open-all))) "C-a C-u" #'+fold/open-all)))
(map! "M-g" #'goto-line (map! "M-g" #'goto-line
"C-x C-b" #'execute-extended-command "C-x C-m" #'execute-extended-command
"C-a" #'beginning-of-line-text "C-a" #'beginning-of-line-text
"C-A" #'beginning-of-line "C-A" #'beginning-of-line
"C-e" #'end-of-line "C-e" #'end-of-line
@ -609,3 +609,6 @@
"C-!" #'eshell-here "C-!" #'eshell-here
"C-M-p" #'mc/mark-previous-like-this "C-M-p" #'mc/mark-previous-like-this
"C-M-n" #'mc/mark-next-like-this) "C-M-n" #'mc/mark-next-like-this)
(provide 'bindings)
;;; bindings.el ends here