Compare commits

..

2 Commits

Author SHA1 Message Date
9378dd3742
Use consult-outline as page viewing alternative 2025-08-08 11:23:50 +02:00
7f4419f4b0
Remove obsolete key binding code for helm
Forgot to remove this in c2581cf.
2025-08-08 11:23:13 +02:00

View File

@ -2424,6 +2424,7 @@ Note that this workaround is incomplete, as explained in this comment."
consult-keep-lines consult-keep-lines
consult-focus-lines consult-focus-lines
consult-buffer consult-buffer
consult-outline
consult-imenu consult-imenu
consult-line consult-line
consult-line-thing-at-point consult-line-thing-at-point
@ -3072,6 +3073,7 @@ Note that this workaround is incomplete, as explained in this comment."
(bind-key "C-c d" #'define-word-at-point) (bind-key "C-c d" #'define-word-at-point)
(bind-key "C-c e" #'crux-eval-and-replace) (bind-key "C-c e" #'crux-eval-and-replace)
(bind-key "C-c h #" #'helm-emms) (bind-key "C-c h #" #'helm-emms)
(bind-key "C-c h P" #'consult-outline)
(bind-key "C-c i" #'ispell-change-dictionary) (bind-key "C-c i" #'ispell-change-dictionary)
(bind-key "C-c j" #'avy-goto-char-timer) (bind-key "C-c j" #'avy-goto-char-timer)
(bind-key "C-c l" #'org-store-link) (bind-key "C-c l" #'org-store-link)
@ -3123,12 +3125,6 @@ Note that this workaround is incomplete, as explained in this comment."
(unbind-key "C-x C-c" global-map) ; Quit emacs by calling `save-buffers-kill-emacs' directly (unbind-key "C-x C-c" global-map) ; Quit emacs by calling `save-buffers-kill-emacs' directly
(unbind-key "M-o" global-map) (unbind-key "M-o" global-map)
(when (package-installed-p 'helm)
;; Explicitly require helm, because autoloading is difficult with helm's
;; separate `helm-command-prefix-key' mechanism.
(require 'helm)
(bind-key helm-command-prefix-key #'helm-command-prefix))
;; Environment Variables ;; Environment Variables
(unless on-windows (unless on-windows