From 3b9a46a42537ea25f04dffb8ccc0b4fba6ce64c3 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Thu, 15 Aug 2019 16:04:32 +0200 Subject: [PATCH] Update config.org notes into table --- .emacs.d/config.org | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index dd1e3ef..194ecc1 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -718,7 +718,7 @@ General.el leader key binds. "SPC" 'smex ;; Buffer - "b" '(:ignore t :which-key "buffer") + "b" '(:ignore t :which-key "buffer") "b B" 'ibuffer "b b" 'ido-switch-buffer "b d" 'kill-this-buffer @@ -781,11 +781,19 @@ https://github.com/suyashbire1/emacs.d/blob/master/init.el * Notes -Org mode keybinds - -- = org-insert-heading-respect-content (create new node) -- = org-narrow-to-subtree -- = widen -- = org-shiftleft/org-shiftright (cycle to next todo keyword) -- = org-shiftup/org-shiftdown (cycle todo priority) -- = org-insert-todo-heading (add todo item) +Org mode keybinds: + +| Keystroke | Description | Function | +|----------------+----------------------------+--------------------------------------| +| | Update tags/headline | (org-ctrl-c-ctrl-c) | +| | Insert heading | (org-insert-heading-respect-content) | +| | ? | (org-narrow-to-subtree) | +| | ? | (widen) | +| | Insert heading | (org-meta-return) | +| | Insert todo heading | (org-insert-todo-heading) | +| | Move subtree down | (org-metadown) | +| | Promote heading | (org-metaleft) | +| | Demote heading | (org-metaright) | +| | Move subtree up | (org-metaup) | +| | Cycle to next todo keyword | (org-shiftleft/org-shiftright) | +| | Cycle todo priority | (org-shiftup/org-shiftdown) |