Fix avy (in some places)
This commit is contained in:
@@ -23,14 +23,13 @@
|
||||
|
||||
(use-package avy
|
||||
:ensure t
|
||||
:defer nil
|
||||
:bind
|
||||
(("C-j" . avy-goto-char-timer)
|
||||
([remap goto-line] . avy-goto-line)
|
||||
:map org-mode-map
|
||||
("C-j" . nil)
|
||||
:map isearch-mode-map
|
||||
("C-j" . avy-isearch)
|
||||
:map magit-file-section-map
|
||||
:map lisp-interaction-mode-map
|
||||
("C-j" . nil))
|
||||
|
||||
:init
|
||||
|
||||
@@ -7,4 +7,9 @@
|
||||
:bind (("C-x g" . magit-status)
|
||||
:map magit-mode-map
|
||||
(":" . execute-extended-command)
|
||||
("x" . magit-discard)))
|
||||
("x" . magit-discard)
|
||||
:map magit-diff-section-map
|
||||
("C-j" . nil)
|
||||
:map magit-file-section-map
|
||||
;; Unbind to stop overriding avy
|
||||
("C-j" . nil)))
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
|
||||
(use-package org
|
||||
:bind (("C-c o ," . thoom/org-clear-all)
|
||||
("C-c SPC" . org-table-blank-field))
|
||||
;; Unbind to make room for avy
|
||||
("C-j" . nil))
|
||||
:custom
|
||||
(org-todo-keywords '((sequence "TODO(t)" "BLOCKED(b)" "|" "DONE(d)"))))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user