From 9a4dddacf2f9e7fa88f61990527f3a2f667f72ba Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 21 Feb 2021 16:24:48 +0100 Subject: [PATCH] Helm: Remap bookmark-jump and bookmark-set keys to use Helm. --- .emacs.d/lisp/init-helm.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.emacs.d/lisp/init-helm.el b/.emacs.d/lisp/init-helm.el index 868ea11a..53e80260 100644 --- a/.emacs.d/lisp/init-helm.el +++ b/.emacs.d/lisp/init-helm.el @@ -179,6 +179,8 @@ Requires `call-process-to-string' from `functions'." (global-set-key [remap execute-extended-command] 'helm-M-x) (global-set-key [remap find-file] 'helm-find-files) (global-set-key [remap occur] 'helm-occur) +(global-set-key [remap bookmark-jump] 'helm-filtered-bookmarks) +(global-set-key [remap bookmark-set] 'helm-filtered-bookmarks) (global-set-key [remap list-buffers] 'helm-mini) ;; (global-set-key [remap dabbrev-expand] 'helm-dabbrev) (global-set-key [remap yank-pop] 'helm-show-kill-ring)