-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcapture-setting.el
82 lines (73 loc) · 3.25 KB
/
capture-setting.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;; -*- coding: utf-8 -*-
;; File: capture-setting.el -- easily capture and beautify various
;; information to knowledgebase of emacs org-mode
;;
;; Author: Denny Zhang(https://www.dennyzhang.com/contact)
;; Copyright 2020, https://DennyZhang.com
;; Created:2008-10-01
;; Updated: Time-stamp: <2020-06-11 12:49:33>
;;
;; --8<-------------------------- separator ------------------------>8--
(require 'org-capture)
(define-key global-map "\C-cr" 'org-capture)
(setq org-capture-templates
'(
("o" "observation" entry (file+headline "work/learn.org" "Track Observations")
"* %<%Y-%m-%d>: %?")
("l" "learn" entry (file+headline "work/learn.org" "Track Learning")
"* %<%Y-%m-%d>: %?")
;; ("d" "Diary" entry (file+headline "~/Dropbox/git_code/www.dennyzhang.com/life/today-learning/README.org" "Latest")
;; "** [Denny Today] %<%Y-%m-%d>, Palo Alto, CA
;;#+BEGIN_EXAMPLE
;;%?
;;#+END_EXAMPLE
;;")
;; ("w" "Web" entry (file "current.org") (function capture-w3m-template))
;; "** %?")
("e" "English" entry (file+headline "life/english.org" "每日英文")
"** %?")
("c" "Communicate" entry (file+headline "current.org" "Communicate")
"** %?")
("i" "Myself postmortem" entry (file+headline "current.org" "iPostmortem")
"** %<%Y-%m-%d>: %?")
("h" "health" entry (file+headline "life/life.org" "Family Health")
"** %<%Y-%m-%d>: %?")
("j" "Job" entry (file+headline "top.org"
"Continuous progress -- for job hunting")
"** %<%Y-%m-%d>: %?")
))
(defun capture-talk-template ()
(if (string= mode-name "Article")
(progn
(setq content (buffer-string))
(setq content (replace-regexp-in-string "\n+$" "\n" content))
;; disable template substitution of org-capture, like %A, %t, etc
(setq content (replace-regexp-in-string "%\\([a-zA-Z]\\)" "% \\1" content))
(concat "** %<%Y-%m-%d>: [%?\n*** TODO mail: %:subject "
(make-string 10 32) ":noexport:\n"
"%a\n"
"#+begin_example\n" content "\n#+end_example"))
(setq content "** %<%Y-%m-%d>: [%?"))
)
(defun capture-gnus-template ()
;; "* %t %:subject :noexport:\n %s\n%?\n\n"
(let ((content (buffer-string)))
(setq content (replace-regexp-in-string "\n+$" "\n" content))
;; disable template substitution of org-capture, like %A, %t, etc
(setq content (replace-regexp-in-string "%\\([a-zA-Z]\\)" "% \\1" content))
(concat "* TODO mail: %:subject "
(make-string 10 32) ":noexport:\n"
"%a\n"
"#+begin_example\n" content "\n#+end_example"))
)
(defun capture-w3m-template ()
(let ((content (buffer-string)))
(setq content (replace-regexp-in-string "\n+$" "\n" content))
(setq content (replace-regexp-in-string "^\* " "# " content))
;; disable template substitution of org-capture, like %A, %t, etc
(setq content (replace-regexp-in-string "%\\([a-zA-Z]\\)" "% \\1" content))
(concat "* web page: " w3m-current-title (make-string 10 32) "\n"
w3m-current-url "\n"
"** webcontent " (make-string 20 32)
":noexport:\n#+begin_example\n" content "\n#+end_example"))
)