From 1b20214c4a3063fc68f8bfd8523bc0640f7d42c8 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 18 Dec 2016 15:57:29 -0500 Subject: org: Consistently use "v" for capture Gnus and elfeed are already using "v", so I want to use "v" rather than "k" in the agenda. At which point, everything is "v", so I'll just switch the global binding to that as well. --- init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index 0c635c9..03bc724 100644 --- a/init.el +++ b/init.el @@ -210,7 +210,7 @@ (use-package org-capture :defer t - :init (define-key km/global-org-map "c" #'org-capture) + :init (define-key km/global-org-map "v" #'org-capture) :config (setq org-capture-templates '(("t" "task" entry (file+headline "~/notes/tasks.org" "Inbox") @@ -276,7 +276,10 @@ ("C-c C-w" . km/org-agenda-refile-dwim) ("C-o" . org-agenda-show-and-scroll-up) ;; Free up 'j' for `km/org-agenda-avy-goto-subword-1'. - ("C-j" . org-agenda-goto-date))) + ("C-j" . org-agenda-goto-date) + ("d" . org-agenda-view-mode-dispatch) + ("k" . nil) + ("v" . org-agenda-capture))) (use-package org-contacts :defer t -- cgit v1.2.3