diff options
Diffstat (limited to 'custom')
| -rw-r--r-- | custom/jao-custom-completion.el | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/custom/jao-custom-completion.el b/custom/jao-custom-completion.el index 3977167..804e049 100644 --- a/custom/jao-custom-completion.el +++ b/custom/jao-custom-completion.el @@ -221,14 +221,13 @@           ("C-x C-b" . consult-buffer)           ("C-x 4 b" . consult-buffer-other-window)           ("C-c b" . project-find-file) -         ("C-c h" . consult-history) +         ("C-c h" . nil)           ("C-c i" . consult-imenu)           ("C-c I" . consult-project-imenu)           ;; ("C-c o" . consult-outline)           ("C-c k" . consult-ripgrep)           ("C-c K" . consult-git-grep)           ("C-c L" . consult-locate) -         ;; ("C-h m" . consult-mode-command)           ("C-c s" . consult-line)           ("C-x r x" . consult-register)           ("C-x r b" . consult-bookmark) @@ -237,8 +236,6 @@           ("M-g m" . consult-mark)           ("M-g e" . consult-error)           ("M-s m" . consult-multi-occur) -         ;; ("M-o" . consult-outline) -         ;; ("M-i" . consult-imenu)           ("M-y" . consult-yank-pop)           ("C-s" . isearch-forward)           ("<help> a" . consult-apropos)) @@ -257,6 +254,12 @@    (define-key consult-narrow-map (vconcat consult-narrow-key "?")      #'consult-narrow-help) +  (with-eval-after-load "eshell" +    (define-key eshell-mode-map (kbd "C-c h") #'consult-history)) + +  (with-eval-after-load "comint" +    (define-key comint-mode-map (kbd "C-c h") #'consult-history)) +    (consult-customize consult-mark :preview-key 'any)    (add-hook 'completion-list-mode-hook #'consult-preview-at-point-mode)) | 
