How to remove a key from a minor-mode keymap in Emacs?

前端 未结 3 1965
渐次进展
渐次进展 2020-12-29 18:37

I have globally assigned C-c/ to ace-jump-mode but reftex-mode (a minor mode for citations used with AucTeX) overrides this key with some function I never use.<

3条回答
  •  长发绾君心
    2020-12-29 19:25

    You can use following command:

    (define-key reftex-mode-map "\C-c/" nil)
    

    to unmap this function from C-c /... But reftex-mode should be loaded, so reftex-mode-map will available for modification

提交回复
热议问题