Eshell completion. Not sure if this actually does anything.

This commit is contained in:
MitchMarq42 2022-11-27 14:47:09 -09:00
parent 0f9babf110
commit fc106093e7

View File

@ -728,6 +728,20 @@ Return nil if DIR is not in a hugo project at all."
;; (company-fuzzy-history-backends '(company-yasnippet))
;; (company-fuzzy-trigger-symbols '("." "->" "<" "\"" "'" "@"))
;; (company-fuzzy-passthrough-backends '(company-capf)))
(use-package bash-completion
:after eshell
:config
(defun bash-completion-from-eshell ()
(interactive)
(let ((completion-at-point-functions '(bash-completion-eshell-capf)))
(completion-at-point)))
(defun bash-completion-eshell-capf ()
(bash-completion-dynamic-complete-nocomint
(save-excursion (eshell-bol) (point)) (point) t))
:general (general-define-key
:states 'insert
:maps 'eshell-mode-map
"TAB" 'bash-completion-from-eshell))
(use-package corfu
:custom
(completion-cycle-threshold 3)