forked from jkitchin/scimax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scimax-functional-text.el
366 lines (322 loc) · 11.7 KB
/
scimax-functional-text.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
;;; scimax-functional-text.el --- Functional text for scimax
;;; Commentary:
;; This library makes functional links out of text in Emacs. It is similar to
;; the implicit links in hyperbole. These are similar to, but different than
;; org-links. The biggest difference is there is no export for these links, they
;; appear as is. They work in any kind of file, e.g. in emails, code comments,
;; log files, etc.
;;
;; The implicit links defined here should require minimal or no markup to
;; recognize, and the consequences of false matches should be pretty minimal.
;; The text should read naturally.
;;
;; In org-mode, I prefer to use links, since you can control how they export,
;; and they are more powerful and easier to configure IMO. Here I use
;; `button-lock-mode' instead of font-lock directly. This limits you to regexps
;; for implicit links. Font-lock would be more powerful, e.g. using functions
;; for finding links which would let you do validation if desired, but font-lock
;; is more complex, and validation might be slower.
;; Here are some examples of functional text.
;; Email addresses: johnrkitchin@gmail.com
;; Hashtags: #MeToo
;; @Usernames
;;
;; GitHUB issues: issue #153
;; git commits: commit 05fcea6
;; pull requests: pr #146 pull #146 or pull request #146
(require 'thingatpt)
(require 'button-lock)
;;; Code:
(global-button-lock-mode)
(defmacro scimax-functional-text (regexp action &rest plist)
"A button-lock button maker.
REGEXP is the regular expression to match. It may have subgroups
in it that are accessible in the ACTION. ACTION is either a list
of sexps that are the body of a function, a lambda function, or a
quoted symbol of an interactive function. You can access the regexp subgroups
in this function. PLIST is the rest of the arguments for
`button-lock-set-button'. I like <return> to be active, so it is
set by default. If you have a help-echo function it is also
wrapped so that it too can have access to the match-data.
"
;; wrap the help-echo so match-data is available to functions later
(when (and (plist-get plist :help-echo)
(functionp (plist-get plist :help-echo)))
(setq plist (plist-put plist :help-echo
`(lambda (win buf pt)
(save-excursion
;; This is clunky, but with grouping the
;; properties may not extend to the whole
;; regexp.
(goto-char (previous-single-property-change pt
'button-lock))
;; now make sure we see it again to get the match-data
(save-match-data
(while (not (looking-at ,regexp))
(backward-char))
(funcall ,(plist-get plist :help-echo) win buf pt)))))))
(let ((mouse-action `(lambda (event)
(interactive "e")
(let ((click-pos (posn-point (event-end event))))
(save-mark-and-excursion
(save-match-data
;; This is clunky, but with grouping the properties may not extend to
;; the whole regexp, e.g. if you set properties on a subgroup.
(goto-char (or (previous-single-property-change click-pos
'button-lock)
(point-min)))
;; now make sure we see it again to get the match-data so it can be used in our functions
(while (not (looking-at ,regexp))
(backward-char))
;; Now we run the action
,(cond
((functionp action)
`(,action))
;; it is probably a list of commands. wrap them in an interactive lambda
(t
`(progn
,@action))))))))
(kbd-action `(lambda ()
(interactive)
(save-excursion
(while (not (looking-at ,regexp))
(backward-char)))
,(cond
((functionp action)
`(,action))
;; it is probably a list of commands. wrap them in an interactive lambda
(t
`(progn
,@action))))))
`(progn
(button-lock-register-global-button
,regexp
;; Suggested in https://github.com/rolandwalker/button-lock/issues/10
,mouse-action
;; I like to press return on functional text to activate it.
:keyboard-binding "RET"
:keyboard-action ,kbd-action
;; These are the rest of the properties
,@plist)
;; Toggle the mode, this seems to be important if you define this in a buffer.
(global-button-lock-mode -1)
(global-button-lock-mode 1))))
(defun scimax-flyspell-ignore-buttons (orig-fun &rest args)
"Ignore flyspell on buttons.
The overlays hijack mouse clicks and functions. This gives
button-lock precedence in org-mode. It is used as advice on
`org-mode-flyspell-verify'."
(and (apply orig-fun args)
(not (get-text-property (point) 'button-lock))))
(advice-add 'org-mode-flyspell-verify :around 'scimax-flyspell-ignore-buttons)
;; * Email addresses
;; johnrkitchin@gmail.com
(defhydra mail-address (:color blue :hint nil)
"
mail address
_c_: Contacts _m_: Mail
"
("m" (when-let (email (thing-at-point 'email)) (compose-mail email)))
("c" (let ((ivy-initial-inputs-alist `((ivy-contacts . ,(thing-at-point 'email)))))
(ivy-contacts))))
(defun sf-activate-emails ()
(interactive)
(scimax-functional-text
thing-at-point-email-regexp
'mail-address/body
:face (list 'link)
:help-echo "Click me to send a message from emacs"))
;; * Username handles
;;
;; These may have many contexts, e.g. Twitter, GitHUB, etc. The action on these
;; is to launch a hydra menu to pick which action you want.
;;
;; @johnkitchin (twitter)
;; @jkitchin (github, reddit)
;; @hematravels (instagram)
;; @tengnie (LinkedIn)
;; @nakhan1 (Facebook)
;; Some username handles are trickier. They can contain punctuation and dashes.
;; The regex is too weak for these. These include Facebook, LinkedIn, and
;; others.
(defvar @username-handle-regexp "\\(^\\|[[:space:]]\\|\\s(\\)\\(?2:@\\(?1:[[:alnum:]]+\\)\\)"
"Regexp for a username handle.
It looks like @username preceded by a space, an opening bracket
The handle is in group 1.
These are defined by @username. This pattern will not match
usernames with punctuation in them, this is partly by design to
avoid matching emails too.")
(defun @username-open (url-pattern)
"If point is at an @username, open it in URL-PATTERN.
URL-PATTERN should have one %s in it which is replaced by username."
(interactive)
(browse-url (format url-pattern (match-string 1))))
(defhydra @username (:color blue :hint nil)
"
Open a @username
_b_: Bitbucket _f_: Facebook
_g_: GitHUB _i_: Instagram
_G_: GitLab _l_: LinkedIn _r_: reddit _t_: Twitter
"
("b" (@username-open "https://bitbucket.org/%s/"))
("f" (@username-open "https://www.facebook.com/%s"))
("g" (@username-open "https://github.com/%s"))
("G" (@username-open "https://gitlab.com/%s"))
("i" (@username-open "https://www.instagram.com/%s/"))
("l" (@username-open "https://www.linkedin.com/in/%s/"))
("r" (@username-open "https://www.reddit.com/user/%s/"))
("t" (@username-open "https://twitter.com/%s")))
(defun sf-activate-usernames ()
(interactive)
(scimax-functional-text
@username-handle-regexp
'@username/body
:grouping 2
:face (list 'link)
:help-echo "Click me to open username."))
;; * Hashtags
;; These are defined like #MeToo (Twitter, Facebook)
;; #cabo (Instagram)
;; #book (org-mode)
;; They also could have different contexts, maybe Twitter, maybe Instagram, or
;; tags in org-mode, etc. so we also define a hydra for this.
(defvar hashtag-regexp "\\(^\\|[[:space:]]\\|\\s(\\)\\(?2:#\\(?1:[[:alnum:]]+\\)\\)"
"A regexp for a hashtag.
The hashtag is in group 1.")
(defun hashtag-open (url-pattern)
"If point is at a hashtag, open it in URL-PATTERN.
URL-PATTERN should have one %s in it which is replaced by the hashtag."
(interactive)
(browse-url (format url-pattern (match-string 1))))
(defhydra hashtag (:color blue :hint nil)
"
@hashtag
_f_: Facebook _i_: Instagram _o_: org-tag _t_: Twitter _d_: org-db"
("i" (hashtag-open "https://www.instagram.com/explore/tags/%s/"))
("f" (hashtag-open "https://www.facebook.com/hashtag/%s"))
("o" (org-tags-view nil ((thing-at-point-looking-at hashtag-regexp))))
("d" (org-db-hashtags))
("t" (hashtag-open "https://twitter.com/hashtag/%s")))
(defun sf-activate-hashtags ()
"Activate scimax-functional-text hashtags.
These are words that start with #."
(interactive)
(scimax-functional-text
hashtag-regexp
hashtag/body
:grouping 2
:face (list 'link)
:help-echo "Click me to open the hashtag."))
;; * GitHUB
;; ** GitHUB issues
;; When the link in a git repo, make it open the issue.
;; issue #153 -> https://github.com/jkitchin/scimax/issues/153
(defvar github-issue-regexp "issue\\s-+#\\(?1:[0-9]+\\)"
"Regexp for a GitHUB issue.")
(defhydra github-issue (:color blue :hint nil)
"
git issue
_g_: GitHUB"
("g" (lambda ()
(interactive)
(when-let (url (github-issue-at-p))
(browse-url url)))))
(defun github-issue-at-p ()
"Return url to the issue if we are at one."
(save-excursion
(let* ((project-name
;; assume something like: git@github.com:jkitchin/scimax.git
(substring
(second
(s-split
":"
(s-trim (shell-command-to-string "git remote get-url origin"))))
nil -4))
(issue (match-string-no-properties 1))
(url (format "https://github.com/%s/issues/%s"
project-name issue)))
url)))
(defun sf-activate-github-issues ()
(interactive)
(scimax-functional-text
github-issue-regexp
'github-issue/body
:face (list 'link)
:help-echo "Click me to open issue at GitHUB."))
;; ** Github pull requests
;; pull request #146
;; pull #146
;; pr #146
(defvar pull-request-regexp "\\(?:pull request\\|pr\\|pull\\)\\s-+#\\(?1:[0-9]+\\)"
"Regexp for a pull request.")
(defun pull-request-at-p ()
"Return url to pull request."
(save-excursion
(let* ((project-name
;; assume something like: git@github.com:jkitchin/scimax.git
(substring
(second
(s-split
":"
(s-trim (shell-command-to-string "git remote get-url origin"))))
nil -4))
(pull-request (match-string-no-properties 1))
(url (format "https://github.com/%s/pull/%s"
project-name pull-request)))
url)))
(defhydra github-pull-request (:color blue :hint nil)
"
git pull-request
_g_: GitHUB"
("g" (lambda ()
(interactive)
(when-let (url (pull-request-at-p))
(browse-url url)))))
(defun sf-activate-github-pull-requests ()
(interactive)
(scimax-functional-text
pull-request-regexp
'github-pull-request/body
:face (list 'link)
:help-echo "Click me to open pull request at GitHUB."))
;; ** GitHUB commits
;; Open a commit in a browser.
;; commit 15b8adf1 -> https://github.com/jkitchin/scimax/commit/15b8adf191a252bb6a4c16c327f9c6fccc315a73
;; commit 05fcea6
(defvar github-commit-regexp "\\b\\(commit\\s-+\\)\\([0-9a-z]\\{6,40\\}\\)\\b"
"Regexp for a github commit.")
(defun github-commit-at-p ()
"Return (project-name hash full-hash)."
(save-excursion
(let* ((project-name
;; assume something like: git@github.com:jkitchin/scimax.git
(substring
(second
(s-split
":"
(s-trim (shell-command-to-string "git remote get-url origin"))))
nil -4))
(hash (match-string-no-properties 2))
(full-hash (s-trim (shell-command-to-string (format "git rev-parse %s" hash)))))
(when hash
(list project-name hash full-hash)))))
(defhydra git-commit (:color blue :hint nil)
"
commit
_g_: GitHUB _m_: Magit log
^ ^ _c_: Magit commit"
("c" (magit-show-commit (third (github-commit-at-p))))
("g" (when-let ((data (github-commit-at-p))
(url (format "https://github.com/%s/commit/%s"
(first data) (third full-hash))))
(browse-url url)))
("m" (magit-log (list (third (github-commit-at-p))))))
(defun sf-activate-git-commits ()
(interactive)
(scimax-functional-text
github-commit-regexp
'git-commit/body
:face (list 'link)
:help-echo "Click me to open the commit on GitHUB."))
(provide 'scimax-functional-text)
;;; scimax-functional-links.el ends here