0

As mentioned in this question, I can not use org mode properly within tmux. So, I would want to remap keybindings like alt+RET for creating a new bullet item or shift + left/right arrow to change an item hierarchy.

How would I do that?

Community
  • 1
  • 1
Amet Alvirde
  • 1,453
  • 3
  • 13
  • 22

1 Answers1

1

org-insert-heading is bound to M-<RET> by default, you just need to remap it

(define-key org-mode-map (kbd "M-<RET>") nil) ; remove old binding
(define-key org-mode-map (kbd "C-c n") 'org-insert-heading) ; add new tmux-friendly binding
Rune Kaagaard
  • 6,643
  • 2
  • 38
  • 29