summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs/emacs.d/init.el')
-rw-r--r--tag-emacs/emacs.d/init.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 76505ad5..bee5c6ce 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -646,8 +646,7 @@ Values: `desktop', `server', `laptop'")
 (use-package org
   :bind (("C-c C-a" . org-agenda-list)
          ("C-c a" . org-agenda)
-         ("C-c l" . org-store-link)
-         ("C-c r" . org-remember))
+         ("C-c l" . org-store-link))
   :config (progn
             (setq org-directory "~/org"
                   org-agenda-files `(,org-directory)
@@ -966,6 +965,11 @@ Also returns nil if pid is nil."
                 ad-do-it)))
   :diminish undo-tree-mode)
 
+(use-package visual-regexp
+  :bind (("C-c r" . vr/replace)
+         ("C-c q" . vr/query-replace)
+         ("C-c m" . vc/mc-mark)))
+
 ;;;; Lisps
 
 (defun ap/lisp-setup ()