spacemacs/layers/+emacs/org/README.org

705 lines
35 KiB
Org Mode
Raw Normal View History

#+TITLE: Org layer
2015-06-10 16:44:30 +00:00
[[file:img/org.png]]
2016-03-31 02:59:55 +00:00
* Table of Contents :TOC_4_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description][Description]]
- [[#features][Features:]]
- [[#bibtex][BibTeX]]
- [[#important-note][Important Note]]
- [[#install][Install]]
- [[#layer][Layer]]
- [[#github-support][Github support]]
- [[#twitter-bootstrap-support][Twitter Bootstrap support]]
- [[#gnuplot-support][Gnuplot support]]
- [[#revealjs-support][Reveal.js support]]
- [[#org-journal-support][Org-journal support]]
- [[#hugo-support][Hugo support]]
2017-05-22 14:16:12 +00:00
- [[#different-bullets][Different bullets]]
- [[#project-support][Project support]]
- [[#org-brain-support][Org-brain support]]
2017-05-22 14:16:12 +00:00
- [[#mode-line-support][Mode line support]]
- [[#key-bindings][Key bindings]]
2017-06-06 13:32:13 +00:00
- [[#starting-org-mode][Starting org-mode]]
2017-05-22 14:16:12 +00:00
- [[#toggles][Toggles]]
2017-06-06 13:32:13 +00:00
- [[#org-mode][Org-mode]]
2017-05-22 14:16:12 +00:00
- [[#org-with-evil-org-mode][Org with evil-org-mode]]
2017-06-06 13:32:13 +00:00
- [[#tables][Tables]]
- [[#trees][Trees]]
- [[#element-insertion][Element insertion]]
- [[#links][Links]]
2018-01-22 11:13:28 +00:00
- [[#babel--source-blocks][Babel / Source Blocks]]
- [[#org-babel-transient-state][Org Babel Transient State]]
2017-06-06 13:32:13 +00:00
- [[#emphasis][Emphasis]]
- [[#navigating-in-calendar][Navigating in calendar]]
2017-05-22 14:16:12 +00:00
- [[#capture-buffers-and-src-blocks][Capture buffers and src blocks]]
- [[#org-agenda][Org agenda]]
- [[#keybindings][Keybindings]]
- [[#org-agenda-transient-state][Org agenda transient state]]
- [[#pomodoro][Pomodoro]]
- [[#presentation][Presentation]]
- [[#org-projectile][Org-projectile]]
- [[#org-journal][Org-journal]]
- [[#org-brain][Org-brain]]
- [[#application-bindings][Application bindings]]
- [[#visualization-bindings][Visualization bindings]]
2015-06-10 16:44:30 +00:00
* Description
This layer enables [[http://orgmode.org/][org mode]] for Spacemacs.
** Features:
2017-06-06 13:32:13 +00:00
- Vim inspired key bindings are provided by [[https://github.com/Somelauw/evil-org-mode][evil-org-mode]]
2015-06-10 16:44:30 +00:00
- Nicer bullet via [[https://github.com/sabof/org-bullets][org-bullets]]
- A [[https://cirillocompany.de/pages/pomodoro-technique][pomodoro method]] integration via [[https://github.com/lolownia/org-pomodoro][org-pomodoro]]
2016-06-14 09:35:54 +00:00
- Presentation mode via [[https://github.com/rlister/org-present][org-present]]
2016-04-16 08:53:07 +00:00
- Insertion of images via [[https://github.com/abo-abo/org-download][org-download]]
2016-06-14 09:35:54 +00:00
- Project-specific TODOs via [[https://github.com/IvanMalison/org-projectile][org-projectile]]
2015-12-05 07:19:02 +00:00
** BibTeX
For more extensive support of references through BibTeX files, have a look at
the [[https://github.com/syl20bnr/spacemacs/blob/develop/layers/+lang/bibtex/README.org][BibTeX layer]].
2015-12-04 05:04:46 +00:00
** Important Note
Since version 0.104, spacemacs uses the =org= version from the org ELPA
repository instead of the one shipped with emacs. Then, any =org= related code
should not be loaded before =dotspacemacs/user-config=, otherwise both versions
will be loaded and will conflict.
2015-06-10 16:44:30 +00:00
2015-12-04 05:04:46 +00:00
Because of autoloading, calling to =org= functions will trigger the loading up
of the =org= shipped with emacs which will induce conflicts.
2015-12-04 05:04:46 +00:00
One way to avoid conflict is to wrap your =org= config code in a
=with-eval-after-load= block like this:
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'org
;; here goes your Org config :)
;; ....
2015-12-04 05:04:46 +00:00
)
#+END_SRC
2015-06-10 16:44:30 +00:00
* Install
** Layer
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =org= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
** Github support
To install Github related extensions like [[https://github.com/larstvei/ox-gfm][ox-gfm]] to export to Github
flavored markdown set the variable =org-enable-github-support= to =t=.
2015-06-10 16:44:30 +00:00
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(org :variables org-enable-github-support t)))
2015-06-10 16:44:30 +00:00
#+END_SRC
2016-09-24 01:06:57 +00:00
** Twitter Bootstrap support
To install the Twitter Boostrap extension (from [[https://github.com/marsmining/ox-twbs][ox-twbs]]), which enables twitter
bootstrap formatted html, then set the variable =org-enable-bootstrap-support=
to =t=.
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(org :variables
org-enable-bootstrap-support t)))
#+END_SRC
** Gnuplot support
Org-mode support the plotting of data within tables through [[http://www.gnuplot.info/][Gnuplot]] as
demonstrated [[http://orgmode.org/worg/org-tutorials/org-plot.html][here]]; unfortunately, this is [[https://github.com/bruceravel/gnuplot-mode/issues/15][not terribly well supported]] on Windows
at this stage. It is possible to disable the configuration of gnuplot support
as usual by adding the package =gnuplot= to your =dotspacemacs-excluded-packages=
variable.
** Reveal.js support
To enable the export of your org file as a [[http://lab.hakim.se/reveal-js/][reveal.js]] presentation, set the
variable =org-enable-reveal-js-support= to =t=. This will install the [[https://github.com/yjwen/org-reveal/][org-reveal]]
extension.
#+BEGIN_SRC emacs-lisp
2016-06-14 09:35:54 +00:00
(setq-default dotspacemacs-configuration-layers
'((org :variables org-enable-reveal-js-support t)))
#+END_SRC
In order to be able to use org-reveal, download =reveal.js= from its
2018-01-21 18:30:42 +00:00
[[http://lab.hakim.se/reveal-js/#/][homepage]] and set =org-reveal-root= to the
download path, as described in the [[https://github.com/yjwen/org-reveal#user-content-revealjs-and-org-reveal][manual]]. Alternatively, add the following line
to each =.org= file you want to process:
#+BEGIN_EXAMPLE
#+REVEAL_ROOT: http://cdn.jsdelivr.net/reveal.js/3.0.0/
#+END_EXAMPLE
2016-09-07 03:10:13 +00:00
** Org-journal support
[[https://github.com/bastibe/org-journal][org-journal]] is a simple journal management system for keeping a seperate journal
file for each day inside a directory.
To install org-journal set the variable =org-enable-org-journal-support= to =t=.
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(org :variables
org-enable-org-journal-support t)))
#+END_SRC
By default journal files are stored in =~/Documents/journal/=. You can override
this by setting =org-journal-dir= in =dotspacemacs/user-config=
#+BEGIN_SRC emacs-lisp
(setq org-journal-dir "~/org/journal/")
#+END_SRC
You can change the journal file name format by altering
=org-journal-file-format=.
#+BEGIN_SRC emacs-lisp
(setq org-journal-file-format "%Y-%m-%d")
#+END_SRC
*Warning:* setting =org-journal-file-format= to include a file extension like
=%Y-%m-%d.org= breaks calender search functionality.
By default journal files are started with a first level heading (=*=) followed
by the date formatted for the locale. If you prefer that your journal files are
formatted differently you can alter =org-journal-date-prefix= and
=org-journal-date-format=.
For example, to have your new journal files created with this header:
#+BEGIN_EXAMPLE
#+TITLE: Tuesday, September 06 2016
#+END_EXAMPLE
Simply define the following in =dotspacemacs/user-config=
#+BEGIN_SRC emacs-lisp
(setq org-journal-date-prefix "#+TITLE: ")
(setq org-journal-date-format "%A, %B %d %Y")
#+END_SRC
The default entry is a second level heading (=** =) followed by a timestamp. If
you start your journal files with a Title as shown above you may want to adjust
entries to start at the first level heading and you may want to change or omit
the timestamp.
#+BEGIN_SRC emacs-lisp
(setq org-journal-time-prefix "* ")
(setq org-journal-time-format "")
#+END_SRC
Any of the org-journal settings can be configured in =dotspacemacs/user-config=
or defined along side the layer itself.
For example:
#+Caption: Configure org-journal with the layer
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(org :variables
org-enable-org-journal-support t
org-journal-dir "~/org/journal/"
org-journal-file-format "%Y-%m-%d"
org-journal-date-prefix "#+TITLE: "
org-journal-date-format "%A, %B %d %Y"
org-journal-time-prefix "* "
org-journal-time-format "")
)
#+END_SRC
** Hugo support
To install the Org exporter [[https://ox-hugo.scripter.co][ox-hugo]] that generates [[https://gohugo.io][Hugo]]-compatible Markdown
/plus/ TOML/YAML front-matter, set the variable =org-enable-hugo-support= to
=t=.
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(
(org :variables
org-enable-hugo-support t)))
#+END_SRC
2015-06-10 16:44:30 +00:00
** Different bullets
You can tweak the bullets displayed in the org buffer in the function
=dotspacemacs/user-config= of your dotfile by setting the variable
=org-bullets-bullet-list=. By default the list is set to =("◉" "○" "✸" "✿")=.
2015-06-10 16:44:30 +00:00
#+BEGIN_SRC emacs-lisp
(setq org-bullets-bullet-list '("■" "◆" "▲" "▶"))
#+END_SRC
You can disable the fancy bullets entirely by adding =org-bullets= to =dotspacemacs-excluded-packages=.
#+BEGIN_SRC emacs-lisp
(dotspacemacs-excluded-packages '(org-bullets))
#+END_SRC
2016-06-14 09:35:54 +00:00
** Project support
Set the layer variable =org-projectile-file= to the filename where you want to
store project-specific TODOs. If this is an absolute path, all todos will be
stored in the same file (organized by project), whereas if it is just a single
filename, todos will be stored in each project root.
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers
'((org :variables org-projectile-file "TODOs.org")))
#+END_SRC
The TODO files are not added to the agenda automatically. You can do this with
the following snippet. Note that this may have unintended consequences until
[[https://github.com/IvanMalison/org-projectile/issues/10][this bug]] is fixed.
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'org-agenda
(require 'org-projectile)
(push (org-projectile-todo-files) org-agenda-files))
2016-06-14 09:35:54 +00:00
#+END_SRC
** Org-brain support
For Emacs 25 or later, support for [[https://kungsgeten.github.io/org-brain.html][org-brain]] is included. See the [[https://github.com/Kungsgeten/org-brain][org-brain
package documentation]] for more information.
** Mode line support
To temporarily enable mode line display of org clock, press ~SPC t m c~.
To permanently enable mode line display of org clock, add this snippet to your
=dotspacemacs/user-config= function:
#+BEGIN_SRC elisp
(setq spaceline-org-clock-p t)
#+END_SRC
2015-06-10 16:44:30 +00:00
* Key bindings
2017-06-06 13:32:13 +00:00
** Starting org-mode
2018-02-28 01:27:33 +00:00
| Key Binding | Description |
|---------------+---------------------------------------------------------------------------|
| ~SPC a o #~ | org agenda list stuck projects |
| ~SPC a o /~ | org occur in agenda files |
| ~SPC a o a~ | org agenda list |
| ~SPC a o c~ | org capture |
| ~SPC a o e~ | org store agenda views |
| ~SPC a o k g~ | org goto last clocked-in clock (go to specific recent clock with ~SPC u~) |
| ~SPC a o k i~ | org clock in last |
| ~SPC a o k j~ | org jump to current clock |
| ~SPC a o k o~ | org clock out |
| ~SPC a o k r~ | org resolve clocks |
| ~SPC a o l~ | org store link |
| ~SPC a o m~ | org tags view |
| ~SPC a o o~ | org agenda |
| ~SPC a o s~ | org search view |
| ~SPC a o t~ | org todo list |
| ~SPC C c~ | org-capture |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
** Toggles
| Key Binding | Description |
|-------------+-----------------------------------------------|
| ~SPC m T c~ | org-toggle-checkbox |
| ~SPC m T e~ | org-toggle-pretty-entities |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m T i~ | org-toggle-inline-images |
| ~SPC m T l~ | org-toggle-link-display |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m T t~ | org-show-todo-tree |
2017-06-06 13:32:13 +00:00
| ~SPC m T T~ | org-todo |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m T V~ | toggle =space-doc-mode= a read-only view mode |
| ~SPC m T x~ | org-preview-latex-fragment |
2017-06-06 13:32:13 +00:00
** Org-mode
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| Key Binding | Description |
|----------------------------------------------+----------------------------------------------|
| ~SPC m <dotspacemacs-major-mode-leader-key>~ | org-ctrl-c-ctrl-c |
| ~SPC m *~ | org-ctrl-c-star |
| ~SPC m RET~ | org-ctrl-c-ret |
| ~SPC m -~ | org-ctrl-c-minus |
| ~SPC m '~ | org-edit-special |
| ~SPC m a~ | org-agenda |
| ~SPC m A~ | org-attach |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m c~ | org-capture |
| ~SPC m C c~ | org-clock-cancel |
| ~SPC m C g~ | evil-org-recompute-clocks |
| ~SPC m C i~ | org-clock-in |
| ~SPC m C o~ | org-clock-out |
2017-07-18 10:46:32 +00:00
| ~SPC m C r~ | org-resolve-clocks |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m d d~ | org-deadline |
| ~SPC m d s~ | org-schedule |
| ~SPC m d t~ | org-time-stamp |
| ~SPC m d T~ | org-time-stamp-inactive |
| ~SPC m e e~ | org-export-dispatch |
| ~SPC m e m~ | send current buffer as HTML email message |
| ~SPC m l~ | org-open-at-point |
| ~SPC m L~ | org-shiftright |
| ~SPC m H~ | org-shiftleft |
| ~SPC m K~ | org-shiftup |
| ~SPC m J~ | org-shiftdown |
| ~SPC m C-S-l~ | org-shiftcontrolright |
| ~SPC m C-S-h~ | org-shiftcontrolleft |
| ~SPC m C-S-j~ | org-shiftcontroldown |
| ~SPC m C-S-k~ | org-shiftcontrolup |
| ~SPC s j~ | spacemacs/jump-in-buffer (jump to a heading) |
2015-06-10 16:44:30 +00:00
2017-06-06 13:32:13 +00:00
** Org with evil-org-mode
Please see the [[https://github.com/Somelauw/evil-org-mode/blob/master/doc/keythemes.org][evil-org documentation]] for additional instructions on customizing
=evil-org-mode=.
| Key Binding | Description |
|---------------+---------------------------------|
| ~gj~ / ~gk~ | Next/previous element (heading) |
| ~gh~ / ~gl~ | Parent/child element (heading) |
| ~gH~ | Root heading |
| ~ae~ | Element text object |
| ~ar~ | Subtree text object |
| ~M-j~ / ~M-k~ | Move heading |
| ~M-h~ / ~M-l~ | Promote or demote heading |
| ~M-J~ / ~M-K~ | Move subtree |
| ~M-H~ / ~M-L~ | Promote or demote subtree |
2017-06-10 14:07:46 +00:00
| ~>>~ / ~<<~ | Promote or demote heading |
2017-06-06 13:32:13 +00:00
2017-06-21 10:58:40 +00:00
If the layer variable =org-want-todo-bindings= is true, the following bindings
are also available.
| Key Bindings | Description |
|--------------+-------------------------------------|
| ~t~ | Cycle TODO state of current heading |
| ~T~ | Insert new TODO heading |
| ~M-t~ | Insert new TODO sub-heading |
2017-06-06 13:32:13 +00:00
** Tables
| Key Binding | Description |
|---------------+----------------------------------------------------------------------------|
| ~SPC m t a~ | Align the table at point by aligning all vertical bars |
| ~SPC m t b~ | Blank the current table field or active region |
| ~SPC m t c~ | Convert from =org-mode= table to table.el and back |
| ~SPC m t d c~ | Delete a column from the table |
| ~SPC m t d r~ | Delete the current row or horizontal line from the table |
| ~SPC m t e~ | Replace the table field value at the cursor by the result of a calculation |
| ~SPC m t E~ | Export table to a file, with configurable format |
| ~SPC m t h~ | Go to the previous field in the table |
| ~SPC m t H~ | Move column to the left |
| ~SPC m t i c~ | Insert a new column into the table |
| ~SPC m t i h~ | Insert a horizontal-line below the current line into the table |
| ~SPC m t i H~ | Insert a hline and move to the row below that line |
| ~SPC m t i r~ | Insert a new row above the current line into the table |
| ~SPC m t I~ | Import a file as a table |
| ~SPC m t j~ | Go to the next row (same column) in the current table |
| ~SPC m t J~ | Move table row down |
| ~SPC m t K~ | Move table row up |
| ~SPC m t l~ | Go to the next field in the current table, creating new lines as needed |
| ~SPC m t L~ | Move column to the right |
| ~SPC m t n~ | Query for a size and insert a table skeleton |
| ~SPC m t N~ | Use the table.el package to insert a new table |
| ~SPC m t p~ | Plot the table using org-plot/gnuplot |
| ~SPC m t r~ | Recalculate the current table line by applying all stored formulas |
| ~SPC m t s~ | Sort table lines according to the column at point |
| ~SPC m t t f~ | Toggle the formula debugger in tables |
| ~SPC m t t o~ | Toggle the display of Row/Column numbers in tables |
| ~SPC m t w~ | Wrap several fields in a column like a paragraph |
2017-06-06 13:32:13 +00:00
** Trees
2015-06-10 16:44:30 +00:00
2017-06-10 14:07:46 +00:00
| Key Binding | Description |
|---------------+---------------------------------|
| ~gj~ / ~gk~ | Next/previous element (heading) |
| ~gh~ / ~gl~ | Parent/child element (heading) |
| ~gH~ | Root heading |
| ~ae~ | Element text object |
| ~ar~ | Subtree text object |
| ~M-j~ / ~M-k~ | Move heading |
| ~M-h~ / ~M-l~ | Promote or demote heading |
| ~M-J~ / ~M-K~ | Move subtree |
| ~M-H~ / ~M-L~ | Promote or demote subtree |
| ~>>~ / ~<<~ | Promote or demote heading |
| ~TAB~ | org-cycle |
| ~SPC m s a~ | Toggle archive tag for subtree |
| ~SPC m s A~ | Archive subtree |
2017-06-10 14:07:46 +00:00
| ~SPC m s b~ | org-tree-to-indirect-buffer |
| ~SPC m s l~ | org-demote-subtree |
| ~SPC m s h~ | org-promote-subtree |
| ~SPC m s k~ | org-move-subtree-up |
| ~SPC m s j~ | org-move-subtree-down |
| ~SPC m s n~ | org-narrow-to-subtree |
| ~SPC m s N~ | widen narrowed subtree |
| ~SPC m s r~ | org-refile |
| ~SPC m s s~ | show sparse tree |
| ~SPC m s S~ | sort trees |
2015-06-10 16:44:30 +00:00
2017-06-06 13:32:13 +00:00
** Element insertion
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| Key Binding | Description |
|---------------+----------------------------------|
| ~SPC m i d~ | org-insert-drawer |
| ~SPC m i D s~ | Take screenshot |
| ~SPC m i D y~ | Yank image url |
| ~SPC m i e~ | org-set-effort |
| ~SPC m i f~ | org-insert-footnote |
| ~SPC m i H~ | org-insert-heading-after-current |
| ~SPC m i h~ | org-insert-heading |
| ~SPC m i K~ | spacemacs/insert-keybinding-org |
| ~SPC m i l~ | org-insert-link |
| ~SPC m i n~ | org-add-note |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m i p~ | org-set-property |
| ~SPC m i s~ | org-insert-subheading |
| ~SPC m i t~ | org-set-tags |
2015-06-10 16:44:30 +00:00
2017-06-06 13:32:13 +00:00
** Links
2015-10-12 12:11:41 +00:00
| Key Binding | Description |
|-------------+-------------------|
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m x o~ | org-open-at-point |
2015-10-12 12:11:41 +00:00
2018-01-22 11:13:28 +00:00
** Babel / Source Blocks
| Key Binding | Description |
|-------------+------------------------------------------|
| ~SPC m b .~ | Enter Babel Transient State |
| ~SPC m b a~ | org-babel-sha1-hash |
2018-01-22 11:13:28 +00:00
| ~SPC m b b~ | org-babel-execute-buffer |
| ~SPC m b c~ | org-babel-check-src-block |
2018-01-22 11:13:28 +00:00
| ~SPC m b d~ | org-babel-demarcate-block |
| ~SPC m b e~ | org-babel-execute-maybe |
2018-01-22 11:13:28 +00:00
| ~SPC m b f~ | org-babel-tangle-file |
| ~SPC m b g~ | org-babel-goto-named-src-block |
2018-01-22 11:13:28 +00:00
| ~SPC m b i~ | org-babel-lob-ingest |
| ~SPC m b I~ | org-babel-view-src-block-info |
| ~SPC m b j~ | org-babel-insert-header-arg |
| ~SPC m b l~ | org-babel-load-in-session |
| ~SPC m b n~ | org-babel-next-src-block |
| ~SPC m b o~ | org-babel-open-src-block-result |
| ~SPC m b p~ | org-babel-previous-src-block |
| ~SPC m b r~ | org-babel-goto-named-result |
| ~SPC m b s~ | org-babel-execute-subtree |
| ~SPC m b t~ | org-babel-tangle |
| ~SPC m b u~ | org-babel-goto-src-block-head |
| ~SPC m b v~ | org-babel-expand-src-block |
| ~SPC m b x~ | org-babel-do-key-sequence-in-edit-buffer |
2018-01-22 11:13:28 +00:00
| ~SPC m b z~ | org-babel-switch-to-session |
| ~SPC m b Z~ | org-babel-switch-to-session-with-code |
*** Org Babel Transient State
Use ~SPC m b .~ to enter a transient state for quick source block navigation and
execution. During that state, the following bindings are active:
| Key Binding | Description |
|-------------+-------------------------------|
| ~'~ | edit source block |
| ~e~ | execute source block |
| ~g~ | jump to named source block |
2018-01-22 11:13:28 +00:00
| ~j~ | jump to next source block |
| ~k~ | jump to previous source block |
| ~q~ | leave transient state |
2017-06-06 13:32:13 +00:00
** Emphasis
2015-06-10 16:44:30 +00:00
| Key Binding | Description |
|-------------+----------------------------|
| ~SPC m x b~ | make region bold |
| ~SPC m x c~ | make region code |
| ~SPC m x i~ | make region italic |
| ~SPC m x r~ | clear region emphasis |
| ~SPC m x s~ | make region strike-through |
| ~SPC m x u~ | make region underline |
| ~SPC m x v~ | make region verbose |
2017-06-06 13:32:13 +00:00
** Navigating in calendar
2016-01-08 09:25:24 +00:00
| Key Binding | Description |
|-------------+--------------------|
| ~M-l~ | One day forward |
| ~M-h~ | One day backward |
| ~M-j~ | One week forward |
| ~M-k~ | One week backward |
| ~M-L~ | One month forward |
| ~M-H~ | One month backward |
| ~M-J~ | One year forward |
| ~M-K~ | One year backward |
** Capture buffers and src blocks
=org-capture-mode= and =org-src-mode= both support the confirm and abort
conventions.
| Key Binding | Description |
|----------------------------------------------+----------------------------------------|
| ~SPC m <dotspacemacs-major-mode-leader-key>~ | confirm in =org-capture-mode= |
| ~SPC m '~ | confirm in =org-src-mode= |
| ~SPC m c~ | confirm |
| ~SPC m a~ | abort |
| ~SPC m k~ | abort |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m r~ | org-capture-refile in org-capture-mode |
** Org agenda
2016-02-20 14:30:18 +00:00
*** Keybindings
The evilified org agenda supports the following bindings:
| Key Binding | Description |
|----------------------+-----------------------------------|
| ~M-SPC~ or ~s-M-SPC~ | org-agenda transient state |
| ~SPC m a~ | org-agenda |
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m C c~ | org-agenda-clock-cancel |
| ~SPC m C i~ | org-agenda-clock-in |
| ~SPC m C o~ | org-agenda-clock-out |
| ~SPC m C p~ | org-pomodoro (if package is used) |
| ~SPC m d d~ | org-agenda-deadline |
| ~SPC m d s~ | org-agenda-schedule |
| ~SPC m i e~ | org-agenda-set-effort |
| ~SPC m i p~ | org-agenda-set-property |
| ~SPC m i t~ | org-agenda-set-tags |
| ~SPC m s r~ | org-agenda-refile |
| ~M-j~ | next item |
| ~M-k~ | previous item |
| ~M-h~ | earlier view |
| ~M-l~ | later view |
| ~gr~ | refresh |
| ~gd~ | toggle grid |
| ~C-v~ | change view |
| ~RET~ | org-agenda-goto |
| ~M-RET~ | org-agenda-show-and-scroll-up |
2016-02-20 14:30:18 +00:00
*** Org agenda transient state
Use ~M-SPC~ or ~s-M-SPC~ in an org agenda buffer to activate its transient state.
The transient state aims to list the most useful org agenda commands and
visually organize them by category. The commands associated with each binding
are listed bellow.
| Keybinding | Description | Command |
|-------------+---------------------+-----------------------------------|
| Entry | | |
|-------------+---------------------+-----------------------------------|
| ~ht~ | set status | org-agenda-todo |
| ~hk~ | kill | org-agenda-kill |
2017-04-25 15:42:58 +00:00
| ~hR~ | refile | org-agenda-refile |
2016-02-20 14:30:18 +00:00
| ~hA~ | archive | org-agenda-archive-default |
| ~h:~ | set tags | org-agenda-set-tags |
2016-02-20 14:30:18 +00:00
| ~hp~ | set priority | org-agenda-priority |
|-------------+---------------------+-----------------------------------|
| Visit entry | | |
|-------------+---------------------+-----------------------------------|
| ~SPC~ | in other window | org-agenda-show-and-scroll-up |
| ~TAB~ | & go to location | org-agenda-goto |
| ~RET~ | & del other windows | org-agenda-switch-to |
| ~o~ | link | link-hint-open-link |
|-------------+---------------------+-----------------------------------|
| Filter | | |
|-------------+---------------------+-----------------------------------|
| ~ft~ | by tag | org-agenda-filter-by-tag |
| ~fr~ | refine by tag | org-agenda-filter-by-tag-refine |
| ~fc~ | by category | org-agenda-filter-by-category |
| ~fh~ | by top headline | org-agenda-filter-by-top-headline |
| ~fx~ | by regexp | org-agenda-filter-by-regexp |
| ~fd~ | delete all filters | org-agenda-filter-remove-all |
|-------------+---------------------+-----------------------------------|
| Date | | |
|-------------+---------------------+-----------------------------------|
| ~ds~ | schedule | org-agenda-schedule |
| ~dS~ | un-schedule | org-agenda-schedule |
2016-02-20 14:30:18 +00:00
| ~dd~ | set deadline | org-agenda-deadline |
| ~dD~ | remove deadline | org-agenda-deadline |
2016-02-20 14:30:18 +00:00
| ~dt~ | timestamp | org-agenda-date-prompt |
| ~+~ | do later | org-agenda-do-date-later |
| ~-~ | do earlier | org-agenda-do-date-earlier |
|-------------+---------------------+-----------------------------------|
| Toggle | | |
|-------------+---------------------+-----------------------------------|
| ~tf~ | follow | org-agenda-follow-mode |
| ~tl~ | log | org-agenda-log-mode |
| ~ta~ | archive | org-agenda-archives-mode |
| ~tr~ | clock report | org-agenda-clockreport-mode |
| ~td~ | diaries | org-agenda-toggle-diary |
|-------------+---------------------+-----------------------------------|
| View | | |
|-------------+---------------------+-----------------------------------|
| ~vd~ | day | org-agenda-day-view |
| ~vw~ | week | org-agenda-week-view |
| ~vt~ | fortnight | org-agenda-fortnight-view |
| ~vm~ | month | org-agenda-month-view |
| ~vy~ | year | org-agenda-year-view |
| ~vn~ | next span | org-agenda-later |
| ~vp~ | prev span | org-agenda-earlier |
| ~vr~ | reset | org-agenda-reset-view |
|-------------+---------------------+-----------------------------------|
| Clock | | |
|-------------+---------------------+-----------------------------------|
| ~cI~ | in | org-agenda-clock-in |
| ~cO~ | out | org-agenda-clock-out |
| ~cq~ | cancel | org-agenda-clock-cancel |
2016-02-20 14:30:18 +00:00
| ~cj~ | jump | org-agenda-clock-goto |
|-------------+---------------------+-----------------------------------|
| Other | | |
|-------------+---------------------+-----------------------------------|
| ~gr~ | reload | org-agenda-redo |
| ~.~ | go to today | org-agenda-goto-today |
| ~gd~ | go to date | org-agenda-goto-date |
2015-06-10 16:44:30 +00:00
** Pomodoro
2015-06-10 16:44:30 +00:00
| Key Binding | Description |
|-------------+-------------------|
org: revamp key bindings Org key bindings were a mess with no logic. This commit changes a lot of them to reorganize them under prefixes. Here is the complet list of changed key bindings: New prefixes: - C clocks - d dates - miD download - ms trees/subtrees - mT toggles New key bindings: - "Ti" org-toggle-inline-images Changes key bindings: - "Cc" 'org-clock-cancel - "Ci" 'org-clock-in - "Co" 'org-clock-out - "Cp" 'org-pomodoro - "dd" 'org-deadline - "ds" 'org-schedule - "dt" 'org-time-stamp - "dT" 'org-time-stamp-inactive - "em" 'org-mime-org-buffer-htmlize - "id" 'org-insert-drawer - "iDy" 'org-download-yank - "iDs" 'org-download-screenshot - "ie" 'org-set-effort - "ih" 'org-insert-heading - "iH" 'org-insert-heading-after-current - "iK" 'spacemacs/insert-keybinding-org - "il" 'org-insert-link - "ip" 'org-set-property - "is" 'org-insert-subheading - "it" 'org-set-tags - "sa" 'org-archive-subtree - "sb" 'org-tree-to-indirect-buffer - "sh" 'org-promote-subtree - "sj" 'org-move-subtree-down - "sk" 'org-move-subtree-up - "sl" 'org-demote-subtree - "sn" 'org-narrow-to-subtree - "sN" 'widen - "sr" 'org-refile - "ss" 'org-sparse-tree - "sS" 'org-sort - "Tt" 'org-show-todo-tree - "Ti" 'org-toggle-inline-images - "TV" 'space-doc-mode - "Tx" 'org-toggle-latex-fragment - "xo" 'org-open-at-point - "Cc" 'org-agenda-clock-cancel - "Ci" 'org-agenda-clock-in - "Co" 'org-agenda-clock-out - "dd" 'org-agenda-deadline - "ds" 'org-agenda-schedule - "ie" 'org-agenda-set-effort - "ip" 'org-agenda-set-property - "it" 'org-agenda-set-tags - "sr" 'org-agenda-refile
2017-05-04 04:23:00 +00:00
| ~SPC m C p~ | starts a pomodoro |
2015-06-10 16:44:30 +00:00
** Presentation
org-present must be activated explicitly by typing: ~SPC SPC org-present~
2015-06-10 16:44:30 +00:00
| Key Binding | Description |
|-------------+----------------|
| ~h~ | previous slide |
| ~l~ | next slide |
| ~q~ | quit |
2016-06-14 09:35:54 +00:00
** Org-projectile
| Key Binding | Description |
|-------------------+---------------------------------------------------------|
| ~SPC a o p~ | Capture a TODO for the current project |
| ~SPC u SPC a o p~ | Capture a TODO for any given project (choose from list) |
| ~SPC p o~ | Go to the TODOs for the current project |
2016-09-07 03:10:13 +00:00
** Org-journal
| Key Binding | Description |
|---------------+------------------------|
| ~SPC a o j j~ | New journal entry |
| ~SPC a o j s~ | Search journal entries |
Journal entries are highlighted in the calendar. The following key bindings are
available for =calendar-mode= for navigating and manipulating the journal.
2016-09-07 03:10:13 +00:00
| Key Binding | Description |
|-------------+---------------------------------------|
| ~SPC m r~ | Read journal entry |
| ~SPC m i~ | Insert journal entry for date |
| ~SPC m n~ | Next journal entry |
| ~SPC m p~ | Previous journal entry |
| ~SPC m s~ | Search all journal entries |
| ~SPC m w~ | Search calendar week journal entries |
| ~SPC m m~ | Search calendar month journal entries |
| ~SPC m y~ | Search calendar year journal entries |
While viewing a journal entry in =org-journal-mode= the following key bindings
are available.
| Key Binding | Description |
|-------------+------------------------|
| ~SPC m j~ | New journal entry |
| ~SPC m p~ | Previous journal entry |
| ~SPC m n~ | Next journal entry |
** Org-brain
*** Application bindings
| Key Binding | Description |
|-------------+------------------------------|
2017-08-01 14:34:48 +00:00
| ~SPC a o b~ | Visualize an org-brain entry |
*** Visualization bindings
| Key Binding | Description |
|-------------+---------------------------------------|
| ~j / TAB~ | Goto next link |
| ~k / S-TAB~ | Goto previous link |
| ~c~ | Add child |
| ~p~ | Add parent |
| ~l~ | Add resource link |
| ~C-y~ | Paste resource link |
| ~a~ | Add resource [[http://orgmode.org/manual/Attachments.html][attachment]] |
| ~o~ | Open and edit the visualized entry |
| ~f~ | Find/visit another entry to visualize |
| ~r~ | Rename this, or another, entry |
| | |