Remove which-function, remap consult-history for eshell-mode as well, dictionary updates

This commit is contained in:
Evie Litherland-Smith 2024-06-18 18:10:46 +01:00
parent 418e88356e
commit 48b3d621f3
2 changed files with 5 additions and 4 deletions

View file

@ -28,3 +28,4 @@ divspec
et et
github github
nixpkgs nixpkgs
ReqCo

View file

@ -167,13 +167,11 @@
(use-package avy (use-package avy
:bind (("<remap> <goto-char>" . avy-goto-char))) :bind (("<remap> <goto-char>" . avy-goto-char)))
(use-package which-func
:init (which-function-mode))
(use-package shell (use-package shell
:bind (("C-c t s" . shell))) :bind (("C-c t s" . shell)))
(use-package eshell (use-package eshell
:defines eshell-mode-map
:bind (("C-c t e" . eshell))) :bind (("C-c t e" . eshell)))
(use-package calc (use-package calc
@ -760,7 +758,9 @@
:map minibuffer-local-map :map minibuffer-local-map
("<remap> <previous-matching-history-element>" . consult-history) ("<remap> <previous-matching-history-element>" . consult-history)
:map comint-mode-map :map comint-mode-map
("<remap> <comint-history-isearch-backward-regexp>" . consult-history))) ("<remap> <comint-history-isearch-backward-regexp>" . consult-history)
:map eshell-mode-map
("<remap> <eshell-previous-matching-input>" . consult-history)))
(use-package consult-eglot (use-package consult-eglot
:after (consult eglot) :after (consult eglot)