commit 8c05e985f9607063faec135d5b8c9371c5f869a8 parent 79fbc590fe3bbe5cf6fd2117c7d76d8b43e6092e Author: Vincent Demeester <vincent@sbr.pm> Date: Tue, 8 Sep 2020 17:04:47 +0100 tools/emacs: re-enable avy 🙃 Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/config-navigating.el | | | 11 | +++++------ |
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tools/emacs/config/config-navigating.el b/tools/emacs/config/config-navigating.el @@ -74,12 +74,11 @@ Meant to economise on key bindings." ("t" . toggle-truncate-lines))) (use-package avy - :disabled - :bind (("C-c j" . avy-goto-word-1) - ("C-c n b" . avy-pop-mark) - ("C-c n j" . avy-goto-char-2) - ("C-c n t" . avy-goto-char-timer) - ("C-c n w" . avy-goto-word-1))) + :commands (avy-goto-char avy-goto-line avy-goto-word-1 avy-pop-mark avy-goto-char-timer) + :bind (("C-c j w" . avy-goto-word-1) + ("C-c j b" . avy-pop-mark) + ("C-c j t" . avy-goto-char-timer) + ("C-c j l" . avy-goto-line))) (use-package hideshow :commands (hs-show-all hs-toggle-hiding hs-hide-all hs-hide-block hs-hide-level)