From 075a076dea1e8a9db0daa9d3791059a121f54949 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 4 Oct 2018 14:56:23 -0400 Subject: [PATCH] More non-cursor-key bindings for org mode --- .emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 2541e31..d5cf7bd 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -165,6 +165,8 @@ :bind (:map org-mode-map (("C-z" . org-latex-export-to-pdf-no-kr) ("M-[" . org-metaleft) ("M-]" . org-metaright) + ("C-M-[" . org-shiftmetaleft) + ("C-M-]" . org-shiftmetaright) ("M-P" . org-metaup) ("M-N" . org-metadown)) :map org-src-mode-map ("C-z" . org-src-export-to-pdf))