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

View File

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