From f9d430ff8b07f2f27495ccc8a739284f56576ea7 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 17 Apr 2017 23:09:51 +0200 Subject: [PATCH] Switch regex/normal search bindings and add key for org-store-link --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index fe6bf1d..f683deb 100644 --- a/init.el +++ b/init.el @@ -449,6 +449,7 @@ (:map gpolonkai/pers-map ("a" . org-agenda-list) ("c" . org-capture) + ("l" . org-store-link) :map org-mode-map ("SPC" . org-space-key) ("C-c l" . org-toggle-link-display) @@ -1200,6 +1201,10 @@ INFO plist." ("C-e" . gpolonkai/move-to-end-of-line) ("M-q" . sachachua/fill-or-unfill-paragraph) ("C-c r" . round-number-at-point-to-decimals) + ("C-s" . isearch-forward-regexp) + ("C-r" . isearch-backward-regexp) + ("C-M-s" . isearch-forward) + ("C-M-r" . isearch-backward) :map ctl-x-map ("C-y" . duplicate-line) ("_" . maximize-window)