Add new key bindings

`M-g C` is now `avy-goto-char-2`, `C-c ;` is now `org-toggle-timestamp-type`.
This commit is contained in:
Gergely Polonkai 2018-11-25 11:34:40 +01:00
parent 9b8a3d06f6
commit 7a0b358b70
1 changed files with 5 additions and 3 deletions

View File

@ -1788,7 +1788,7 @@ window.
(avy-setup-default)
:bind
(("M-g c" . avy-goto-char)
("C-'" . avy-goto-char-2)
("M-g C" . avy-goto-char-2)
("M-g f" . avy-goto-line)
("M-g w" . avy-goto-word-1)
("M-g e" . avy-goto-word-0)))
@ -2639,7 +2639,8 @@ This is a big one; I use a lot of customisation here.
("C-c l" . org-toggle-link-display)
("C-a" . gpolonkai/move-to-beginning-of-line)
("C-e" . gpolonkai/move-to-end-of-line)
("C-c h" . outline-previous-heading)))
("C-c h" . outline-previous-heading)
("C-c ;" . org-toggle-timestamp-type)))
#+END_SRC
** Show a random ToDo every hour
@ -3197,7 +3198,8 @@ directory. It is available from [[http://plantuml.com/download][here]].
("C-c" . calc)
("c i" . org-clock-in)
("c I" . org-clock-in-last)
("c o" . org-clock-out))
("c o" . org-clock-out)
("c g" . org-clock-goto))
#+END_SRC
** TODO These fail to work using ~bind-keys~, but why?