Add key bindings for org-feed-update-all and org-feed-goto-inbox (#10745)

This commit is contained in:
seemyvest 2018-06-02 16:00:33 +10:00 committed by Sylvain Benner
parent 1374cd615f
commit 51f922694c
2 changed files with 10 additions and 0 deletions

View File

@ -279,6 +279,8 @@ To permanently enable mode line display of org clock, add this snippet to your
| ~SPC a o a~ | org agenda list |
| ~SPC a o c~ | org capture |
| ~SPC a o e~ | org store agenda views |
| ~SPC a o f i~ | org feed goto inbox |
| ~SPC a o f u~ | org feed update all |
| ~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 |
@ -327,6 +329,8 @@ To permanently enable mode line display of org clock, add this snippet to your
| ~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 f i~ | org-feed-goto-inbox |
| ~SPC m f u~ | org-feed-update-all |
| ~SPC m l~ | org-open-at-point |
| ~SPC m L~ | org-shiftright |
| ~SPC m H~ | org-shiftleft |

View File

@ -163,6 +163,7 @@ Will work on both org-mode and any mode that accepts plain html."
("mC" . "clocks")
("md" . "dates")
("me" . "export")
("mf" . "feeds")
("mi" . "insert")
("miD" . "download")
("ms" . "trees/subtrees")
@ -186,6 +187,8 @@ Will work on both org-mode and any mode that accepts plain html."
"dt" 'org-time-stamp
"dT" 'org-time-stamp-inactive
"ee" 'org-export-dispatch
"fi" 'org-feed-goto-inbox
"fu" 'org-feed-update-all
"a" 'org-agenda
@ -310,6 +313,7 @@ Will work on both org-mode and any mode that accepts plain html."
;; Add global evil-leader mappings. Used to access org-agenda
;; functionalities and a few others commands from any other mode.
(spacemacs/declare-prefix "ao" "org")
(spacemacs/declare-prefix "aof" "feeds")
(spacemacs/declare-prefix "aok" "clock")
(spacemacs/set-leader-keys
;; org-agenda
@ -318,6 +322,8 @@ Will work on both org-mode and any mode that accepts plain html."
"aoa" 'org-agenda-list
"aoc" 'org-capture
"aoe" 'org-store-agenda-views
"aofi" 'org-feed-goto-inbox
"aofu" 'org-feed-update-all
"aokg" 'org-clock-goto
"aoki" 'org-clock-in-last
"aokj" 'org-clock-jump-to-current-clock