From 952ef8bfa14c8fdc4f199a165b6828a7fb2aa232 Mon Sep 17 00:00:00 2001 From: johannst Date: Fri, 23 Aug 2019 09:37:32 +0200 Subject: emacs: added M-hjkl alternative to M-arrow_keys in org mode --- emacs.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/emacs.el b/emacs.el index 363be71..f4bfe0e 100644 --- a/emacs.el +++ b/emacs.el @@ -48,6 +48,13 @@ (use-package org :config (setq org-log-done t) + :bind + (:map org-mode-map + ("M-j" . org-metadown) + ("M-h" . org-metaleft) + ("M-l" . org-metaright) + ("M-k" . org-metaup) + ) ) ;; help -- cgit v1.2.3