summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-07-03 17:55:01 +0200
committerMartin Polden <mpolden@mpolden.no>2022-07-03 17:56:26 +0200
commitc6e74228997eb4c9e4191bd5fabc0f8613c819f1 (patch)
treea0b69851bf15b6c6351b3d87d2dd118d0458e238
parented8f2db2252232b9c3627ef073842e2e681557f8 (diff)
editing, flymake, mail: shuffle keybindings
-rw-r--r--lisp/init-editing.el2
-rw-r--r--lisp/init-flymake.el10
-rw-r--r--lisp/init-mail.el2
3 files changed, 7 insertions, 7 deletions
diff --git a/lisp/init-editing.el b/lisp/init-editing.el
index 1a65737..da768ed 100644
--- a/lisp/init-editing.el
+++ b/lisp/init-editing.el
@@ -16,7 +16,7 @@
:bind (("M-j" . crux-top-join-line)
("C-c n" . crux-rename-file-and-buffer)
("C-c w" . crux-kill-buffer-truename)
- ("C-c D" . crux-duplicate-current-line-or-region)
+ ("C-c d" . crux-duplicate-current-line-or-region)
("C-c C-o" . crux-open-with)
("C-x C-r" . crux-recentf-find-file)
("C-x C-o" . crux-recentf-find-directory)))
diff --git a/lisp/init-flymake.el b/lisp/init-flymake.el
index 00aa2bd..94df6fc 100644
--- a/lisp/init-flymake.el
+++ b/lisp/init-flymake.el
@@ -4,11 +4,11 @@
(use-package flymake
:bind (:map flymake-mode-map
- ;; C-c d l shows a list of all errors
- ("C-c d l" . flymake-show-buffer-diagnostics)
- ;; C-c d n/p navigates to next/previous error
- ("C-c d n" . flymake-goto-next-error)
- ("C-c d p" . flymake-goto-prev-error)))
+ ;; C-c m l shows a list of all errors
+ ("C-c m l" . flymake-show-buffer-diagnostics)
+ ;; C-c m n/p navigates to next/previous error
+ ("C-c m n" . flymake-goto-next-error)
+ ("C-c m p" . flymake-goto-prev-error)))
(provide 'init-flymake)
diff --git a/lisp/init-mail.el b/lisp/init-mail.el
index 06d6532..033f2bd 100644
--- a/lisp/init-mail.el
+++ b/lisp/init-mail.el
@@ -4,7 +4,7 @@
(use-package mu4e
:load-path "/usr/local/share/emacs/site-lisp/mu/mu4e"
- :bind (("C-c m" . mu4e)
+ :bind (("C-c M" . mu4e)
;; delete moves email to trash instead of deleting
:map mu4e-headers-mode-map ("d" . "mt")
:map mu4e-view-mode-map ("d" . "mt"))