Add some org bindings for no cursor keys keyboard

This commit is contained in:
Adam Goldsmith 2018-08-28 22:25:02 -04:00
parent af0c7ca0cc
commit a1343cfd7b
1 changed files with 4 additions and 2 deletions

View File

@ -158,8 +158,10 @@
(use-package org
:defer
:bind ((:map org-mode-map ("C-z" . org-latex-export-to-pdf-no-kr))
(:map org-src-mode-map ("C-z" . org-src-export-to-pdf)))
:bind (:map org-mode-map (("C-z" . org-latex-export-to-pdf-no-kr)
("M-[" . org-metaleft)
("M-]" . org-metaright))
:map org-src-mode-map ("C-z" . org-src-export-to-pdf))
:config
;; Make windmove work in org-mode:
(add-hook 'org-shiftup-final-hook 'windmove-up)