My ace-jump-mode
bindings don't seem to work when I'm editing in org-mode
.
This is how I define them in my .emacs.
(progn
(require 'ace-jump-mode)
(define-key global-map (kbd "C-c SPC") 'ace-jump-mode)
(define-key global-map (kbd "C-c C-c SPC") 'ace-jump-char-mode)
(define-key global-map (kbd "C-c C-c C-c SPC") 'ace-jump-line-mode)
)
Instead, when editing in org-mode
, C-c SPC
gives on the mini-buffer:
Not in table data field
... with the other bindings also failing (in different ways). I would prefer to disable these bindings from the org-mode
commands they are bound to as I don't use them (for the time being at least).
If that's not possible, is it possible to instead only define alternative bindings for the ace-jump
commands only when working in org-mode
?
In general what is the "proper" way of addressing such clashes?