ENH remove extraneious timestamps
This commit is contained in:
parent
64a46740f3
commit
86180667ba
12
etc/conf.org
12
etc/conf.org
|
@ -1595,15 +1595,15 @@ As per Bernt's guide, capture is meant to be fast. The dispatcher is bound to =F
|
||||||
|
|
||||||
;; for useful reference information that may be grouped with tasks
|
;; for useful reference information that may be grouped with tasks
|
||||||
("n" "note" entry (file ,capfile)
|
("n" "note" entry (file ,capfile)
|
||||||
"* %?\n%U\n")
|
"* %?\n")
|
||||||
|
|
||||||
;; for non-actionable events that happen at a certain time
|
;; for non-actionable events that happen at a certain time
|
||||||
("a" "appointment" entry (file ,capfile)
|
("a" "appointment" entry (file ,capfile)
|
||||||
"* %?\n%U\n%^t\n")
|
"* %?\n%^t\n")
|
||||||
|
|
||||||
;; like appointment but multiple days
|
;; like appointment but multiple days
|
||||||
("s" "appointment-span" entry (file ,capfile)
|
("s" "appointment-span" entry (file ,capfile)
|
||||||
"* %?\n%U\n%^t--%^t\n")
|
"* %?\n%^t--%^t\n")
|
||||||
|
|
||||||
;; task with a deadline
|
;; task with a deadline
|
||||||
("d" "deadline" entry (file ,capfile)
|
("d" "deadline" entry (file ,capfile)
|
||||||
|
@ -1615,7 +1615,7 @@ As per Bernt's guide, capture is meant to be fast. The dispatcher is bound to =F
|
||||||
|
|
||||||
;; for interruptions that produce useful reference material
|
;; for interruptions that produce useful reference material
|
||||||
("m" "meeting" entry (file ,capfile)
|
("m" "meeting" entry (file ,capfile)
|
||||||
"* meeting with%? :\\%note:\n%U\n")
|
"* meeting with%? :\\%note:\n")
|
||||||
|
|
||||||
;; TODO add entries here for asynchronously performed tasks
|
;; TODO add entries here for asynchronously performed tasks
|
||||||
;; that can be tracked
|
;; that can be tracked
|
||||||
|
@ -1629,12 +1629,12 @@ As per Bernt's guide, capture is meant to be fast. The dispatcher is bound to =F
|
||||||
|
|
||||||
;; for capturing web pages with web browser
|
;; for capturing web pages with web browser
|
||||||
("p" "org-protocol" entry (file ,capfile)
|
("p" "org-protocol" entry (file ,capfile)
|
||||||
"* %^{Title} :\\%note:\n%u\n#+BEGIN_QUOTE\n%i\n#+END_QUOTE"
|
"* %^{Title} :\\%note:\n#+BEGIN_QUOTE\n%i\n#+END_QUOTE"
|
||||||
:immediate-finish t)
|
:immediate-finish t)
|
||||||
|
|
||||||
;; or capturing links with web browser
|
;; or capturing links with web browser
|
||||||
("L" "org-protocol link" entry (file ,capfile)
|
("L" "org-protocol link" entry (file ,capfile)
|
||||||
"* %^{Title} :\\%note:\n[[%:link][%:description]]\n%U"
|
"* %^{Title} :\\%note:\n[[%:link][%:description]]"
|
||||||
:immediate-finish t))))
|
:immediate-finish t))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
**** insert mode
|
**** insert mode
|
||||||
|
|
Loading…
Reference in New Issue