Switch regex/normal search bindings and add key for org-store-link

This commit is contained in:
Gergely Polonkai 2017-04-17 23:09:51 +02:00
parent 714f521038
commit f9d430ff8b

View File

@ -449,6 +449,7 @@
(:map gpolonkai/pers-map (:map gpolonkai/pers-map
("a" . org-agenda-list) ("a" . org-agenda-list)
("c" . org-capture) ("c" . org-capture)
("l" . org-store-link)
:map org-mode-map :map org-mode-map
("SPC" . org-space-key) ("SPC" . org-space-key)
("C-c l" . org-toggle-link-display) ("C-c l" . org-toggle-link-display)
@ -1200,6 +1201,10 @@ INFO plist."
("C-e" . gpolonkai/move-to-end-of-line) ("C-e" . gpolonkai/move-to-end-of-line)
("M-q" . sachachua/fill-or-unfill-paragraph) ("M-q" . sachachua/fill-or-unfill-paragraph)
("C-c r" . round-number-at-point-to-decimals) ("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 :map ctl-x-map
("C-y" . duplicate-line) ("C-y" . duplicate-line)
("_" . maximize-window) ("_" . maximize-window)