Newer versions of org-mode remap C-up to org-backward-paragraph
.
I would like C-up not to be remapped (and continue to use the standard Emacs' backward-paragraph
instead).
But the standard ways of avoiding this remap do not work with org-mode (i.e., (local-unset-key [C-up])
and (define-key org-mode-map [C-up] 'backward-paragraph)
) don't do anything). It seems that org-mode achieves this by remapping functions, not key bindings.
How to disable org-mode from remapping C-up?
Many thanks!