helm-bookmark绑定按键问题

我想重新绑定一下helm-bookmarks的按键 但是启动的时候不能直接用 貌似是helm-bookmark-map没有生效。每一个define-key单独运行是可以使用的,但是自动启动的时候并不会生效。。。

;; helm bookmark keybindings
(define-key spacemacs-default-map (kbd "h b") 'helm-bookmarks)
(with-eval-after-load 'helm-bookmarks
  (progn
    (bb/define-key helm-bookmark-map (kbd "C-o") 'helm-bookmark-run-jump-other-window)
    (bb/define-key helm-bookmark-map (kbd "C-d") 'helm-bookmark-run-delete)
    (bb/define-key helm-bookmark-map (kbd "C-f") 'helm-bookmark-toggle-filename)
    (bb/define-key helm-bookmark-map (kbd "C-e") 'helm-bookmark-run-edit))
)

求助哈。。。。

应该是 (with-eval-after-load 'helm-bookmark 吧?

这里面的 helm-bookmark 是文件名,你可以找到 helm-bookmarks的定义,就知道它在哪个文件了。

多谢多谢,原来是load文件。。。我还以为是函数:joy: