forked from abo-abo/ace-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ace-link.el
812 lines (726 loc) · 26.2 KB
/
ace-link.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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
;;; ace-link.el --- Quickly follow links
;; Copyright (C) 2014-2017 Oleh Krehel
;; Author: Oleh Krehel <ohwoeowho@gmail.com>
;; URL: https://github.com/abo-abo/ace-link
;; Version: 0.5.0
;; Package-Requires: ((avy "0.4.0"))
;; Keywords: convenience, links, avy
;; This file is not part of GNU Emacs
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; For a full copy of the GNU General Public License
;; see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This package offers an alternative to tabbing through links in
;; buffers, for instance, in an Info buffer. `avy' is used to turn
;; opening a link from an O(N) operation into an O(1).
;;
;; Use `ace-link-setup-default' to set up the default bindings, which currently
;; bind e.g. `ace-link-info' to "o", which was previously unbound and is
;; close to "l" (which by default goes back).
;;
;; Supported modes: `Info-mode', `help-mode', `org-mode', `eww-mode',
;; `gnus-article-mode', `Custom-mode', `woman-mode', `goto-address-mode'.
;;; Code:
(require 'avy)
;;* `ace-link'
(defvar ace-link-fallback-function nil
"When non-nil, called by `ace-link' when `major-mode' isn't recognized.")
;;;###autoload
(defun ace-link ()
"Call the ace link function for the current `major-mode'"
(interactive)
(cond ((eq major-mode 'Info-mode)
(ace-link-info))
((member major-mode '(help-mode package-menu-mode geiser-doc-mode elbank-report-mode
elbank-overview-mode slime-trace-dialog-mode))
(ace-link-help))
((eq major-mode 'woman-mode)
(ace-link-woman))
((eq major-mode 'eww-mode)
(ace-link-eww))
((eq major-mode 'w3m-mode)
(ace-link-w3m))
((or (member major-mode '(compilation-mode grep-mode))
(bound-and-true-p compilation-shell-minor-mode))
(ace-link-compilation))
((eq major-mode 'gnus-article-mode)
(ace-link-gnus))
((memq major-mode '(org-mode erc-mode elfeed-show-mode))
(ace-link-org))
((eq major-mode 'org-agenda-mode)
(ace-link-org-agenda))
((eq major-mode 'Custom-mode)
(ace-link-org))
((eq major-mode 'sldb-mode)
(ace-link-sldb))
((eq major-mode 'slime-xref-mode)
(ace-link-slime-xref))
((eq major-mode 'slime-inspector-mode)
(ace-link-slime-inspector))
((eq major-mode 'indium-inspector-mode)
(ace-link-indium-inspector))
((eq major-mode 'indium-debugger-frames-mode)
(ace-link-indium-debugger-frames))
((and ace-link-fallback-function
(funcall ace-link-fallback-function)))
(t
(error
"%S isn't supported"
major-mode))))
;;* `ace-link-info'
;;;###autoload
(defun ace-link-info ()
"Open a visible link in an `Info-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-info
(avy--process
(mapcar #'cdr
(ace-link--info-collect))
(avy--style-fn avy-style)))))
(ace-link--info-action pt)))
(defun ace-link--info-action (pt)
(when (numberp pt)
(push-mark)
(goto-char pt)
(let ((we (window-end)))
(while (not (ignore-errors
(Info-follow-nearest-node)))
(forward-char 1)
(when (> (point) we)
(error "Could not follow link"))))))
(declare-function Info-follow-nearest-node "info")
(declare-function Info-next-reference "info")
(declare-function Info-try-follow-nearest-node "info")
(declare-function Info-goto-node "info")
(defun ace-link--info-current ()
"Return the node at point."
(cons (cl-letf (((symbol-function #'Info-goto-node)
(lambda (node _) node))
(browse-url-browser-function
(lambda (url &rest _) url)))
(Info-try-follow-nearest-node))
(point)))
(defun ace-link--info-collect ()
"Collect the positions of visible links in the current `Info-mode' buffer."
(let ((end (window-end))
points)
(save-excursion
(goto-char (window-start))
(when (ignore-errors (Info-next-reference) t)
(push (ace-link--info-current) points)
(Info-next-reference)
(while (and (< (point) end)
(> (point) (cdar points)))
(push (ace-link--info-current) points)
(Info-next-reference))
(nreverse points)))))
;;* `ace-link-help'
;;;###autoload
(defun ace-link-help ()
"Open a visible link in a `help-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-help
(avy--process
(mapcar #'cdr (ace-link--help-collect))
(avy--style-fn avy-style)))))
(ace-link--help-action pt)))
(defun ace-link--help-action (pt)
(when (numberp pt)
(goto-char (1+ pt))
(push-button)))
(defun ace-link--help-collect ()
"Collect the positions of visible links in the current `help-mode' buffer."
(let ((skip (text-property-any
(window-start) (window-end) 'button nil))
candidates)
(save-excursion
(while (setq skip (text-property-not-all
skip (window-end) 'button nil))
(goto-char skip)
(push (cons (button-label (button-at skip)) skip) candidates)
(setq skip (text-property-any (point) (window-end)
'button nil))))
(nreverse candidates)))
;;* `ace-link-woman'
;;;###autoload
(defun ace-link-woman ()
"Open a visible link in a `woman-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-woman
(avy--process
(mapcar #'cdr (ace-link--woman-collect))
(avy--style-fn avy-style)))))
(ace-link--woman-action pt)))
(defun ace-link--woman-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(push-button)))
(defun ace-link--woman-collect ()
"Collect all links visible in the current `woman-mode' buffer."
(let ((end (window-end))
candidates)
(save-excursion
(goto-char (window-start))
(while (and (condition-case nil (forward-button 1)
(error nil))
(< (point) end))
(push (cons (button-label (button-at (point))) (point))
candidates))
(nreverse candidates))))
;;* `ace-link-eww'
;;;###autoload
(defun ace-link-eww ()
"Open a visible link in an `eww-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-eww
(avy--process
(mapcar #'cdr (ace-link--eww-collect))
(avy--style-fn avy-style)))))
(ace-link--eww-action pt)))
(declare-function eww-follow-link "eww")
(defun ace-link--eww-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(eww-follow-link)))
(defun ace-link--eww-collect ()
"Collect the positions of visible links in the current `eww' buffer."
(save-excursion
(save-restriction
(narrow-to-region
(window-start)
(window-end))
(goto-char (point-min))
(let (beg end candidates)
(setq end
(if (get-text-property (point) 'help-echo)
(point)
(text-property-any
(point) (point-max) 'help-echo nil)))
(while (setq beg (text-property-not-all
end (point-max) 'help-echo nil))
(goto-char beg)
(setq end (text-property-any
(point) (point-max) 'help-echo nil))
(push (cons (buffer-substring-no-properties beg end) beg)
candidates))
(nreverse candidates)))))
;;* `ace-link-w3m'
;;;###autoload
(defun ace-link-w3m ()
"Open a visible link in an `w3m-mode' buffer."
(interactive)
(require 'w3m)
(let ((pt (avy-with ace-link-w3m
(avy--process
(mapcar #'cdr (ace-link--w3m-collect))
(avy--style-fn avy-style)))))
(ace-link--w3m-action pt)))
(declare-function w3m-view-this-url "w3m")
(defun ace-link--w3m-action (pt)
(when (numberp pt)
(goto-char pt)
(w3m-view-this-url)))
(defun ace-link--w3m-collect ()
"Collect the positions of visible links in the current `w3m' buffer."
(save-excursion
(save-restriction
(narrow-to-region
(window-start)
(window-end))
(goto-char (point-min))
(let ((anchor-prop 'w3m-anchor-sequence)
(beg (point))
(end 0)
candidates)
;; property values for anchors in order are: 1 2 3 ...
(unless (get-text-property beg anchor-prop)
(setq beg (next-single-char-property-change beg anchor-prop)))
(while (< beg (point-max))
(setq end (next-single-char-property-change beg anchor-prop))
(push (cons (buffer-substring-no-properties beg end) beg)
candidates)
(setq beg (next-single-char-property-change end anchor-prop)))
(nreverse candidates)))))
;;* `ace-link-compilation'
;;;###autoload
(defun ace-link-compilation ()
"Open a visible link in a `compilation-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-compilation
(avy--process
(mapcar #'cdr (ace-link--eww-collect))
(avy--style-fn avy-style)))))
(ace-link--compilation-action pt)))
(defun ace-link--compilation-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(compile-goto-error)))
(declare-function compile-goto-error "compile")
;;* `ace-link-gnus'
;;;###autoload
(defun ace-link-gnus ()
"Open a visible link in a `gnus-article-mode' buffer."
(interactive)
(when (eq major-mode 'gnus-summary-mode)
(gnus-summary-widget-forward 1))
(let ((pt (avy-with ace-link-gnus
(avy--process
(ace-link--gnus-collect)
(avy--style-fn avy-style)))))
(ace-link--gnus-action pt)))
(defun ace-link--gnus-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(widget-button-press (point))))
(declare-function widget-forward "wid-edit")
(declare-function gnus-summary-widget-forward "gnus-sum")
(declare-function widget-button-press "wid-edit")
(defun ace-link--gnus-collect ()
"Collect the positions of visible links in the current gnus buffer."
(require 'wid-edit)
(let (candidates pt)
(save-excursion
(save-restriction
(narrow-to-region
(window-start)
(window-end))
(goto-char (point-min))
(setq pt (point))
(while (progn (widget-forward 1)
(> (point) pt))
(setq pt (point))
(when (or (plist-get (text-properties-at (point)) 'gnus-string)
(plist-get (text-properties-at (point)) 'shr-url))
(push (point) candidates)))
(nreverse candidates)))))
;;* `ace-link-mu4e'
;;;###autoload
(defun ace-link-mu4e ()
"Open a visible link in an `mu4e-view-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-mu4e
(avy--process
(mapcar #'cdr (ace-link--mu4e-collect))
(avy--style-fn avy-style)))))
(ace-link--mu4e-action pt)))
(declare-function shr-browse-url "shr")
(declare-function mu4e~view-browse-url-from-binding "ext:mu4e-view")
(declare-function mu4e~view-open-attach-from-binding "ext:mu4e-view")
(defun ace-link--mu4e-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(cond ((get-text-property (point) 'shr-url)
(shr-browse-url))
((get-text-property (point) 'mu4e-url)
(mu4e~view-browse-url-from-binding))
((get-text-property (point) 'mu4e-attnum)
(mu4e~view-open-attach-from-binding)))))
(defun ace-link--mu4e-next-link (pos)
(let* ((shr-link-pos (text-property-not-all pos (point-max) 'shr-url nil))
(mu4e-link-pos (text-property-not-all pos (point-max) 'mu4e-url nil))
(mu4e-att-link-pos (text-property-not-all pos (point-max) 'mu4e-attnum nil))
(links (seq-filter
(lambda (link)
(elt link 1))
(list
(list 'shr-url shr-link-pos)
(list 'mu4e-url mu4e-link-pos)
(list 'mu4e-attnum mu4e-att-link-pos)))))
(if links
(car
(sort links (lambda (x y)
(< (elt x 1) (elt y 1)))))
nil)))
(defun ace-link--mu4e-end-of-link (link)
(or (text-property-any (elt link 1) (point-max) (elt link 0) nil)
(point-max)))
(defun ace-link--mu4e-collect ()
"Collect the positions of visible links in the current mu4e buffer."
(save-excursion
(save-restriction
(narrow-to-region
(window-start)
(window-end))
(goto-char (point-min))
(let (link pos candidates)
(setq pos (point))
(while (setq link (ace-link--mu4e-next-link pos))
(goto-char (elt link 1))
(setq pos (ace-link--mu4e-end-of-link link))
(push (cons (buffer-substring-no-properties (elt link 1) pos) (elt link 1)) candidates))
(nreverse candidates)))))
;;* `ace-link-org'
;;;###autoload
(defun ace-link-org ()
"Open a visible link in an `org-mode' buffer."
(interactive)
(require 'org)
(let ((pt (avy-with ace-link-org
(avy--process
(mapcar #'cdr (ace-link--org-collect))
(avy--style-fn avy-style)))))
(ace-link--org-action pt)))
(declare-function org-open-at-point "org")
(declare-function outline-invisible-p "outline")
(defvar org-any-link-re)
(defun ace-link--org-action (pt)
(when (numberp pt)
(goto-char pt)
(org-open-at-point)))
(defun ace-link--org-collect ()
(let ((end (window-end))
res)
(save-excursion
(goto-char (window-start))
(while (re-search-forward org-any-link-re end t)
;; Check that the link is visible. Look at the last character
;; position in the link ("...X]]") to cover links with and
;; without a description.
(when (not (outline-invisible-p (- (match-end 0) 3)))
(push
(cons
(buffer-substring-no-properties
(match-beginning 0)
(match-end 0))
(match-beginning 0))
res)))
(nreverse res))))
;;* `ace-link-org-agenda'
;;;###autoload
(defun ace-link-org-agenda ()
"Open a visible link in an `org-mode-agenda' buffer."
(interactive)
(require 'org-agenda)
(let ((pt (avy-with ace-link-org-agenda
(avy--process
(mapcar #'cdr (ace-link--org-agenda-collect))
(avy--style-fn avy-style)))))
(ace-link--org-agenda-action pt)))
(declare-function org-agenda-goto "org-agenda")
(defun ace-link--org-agenda-action (pt)
(when (numberp pt)
(goto-char pt)
(org-agenda-goto)))
(defun ace-link--org-agenda-collect ()
(let ((skip (text-property-any
(window-start) (window-end) 'org-marker nil))
candidates)
(save-excursion
(while (setq skip (text-property-not-all
skip (window-end) 'org-marker nil))
(goto-char skip)
(push (cons (get-char-property (point) 'txt) skip) candidates)
(setq skip (text-property-any (point) (window-end)
'org-marker nil))))
(nreverse candidates)))
;;* `ace-link-xref'
;;;###autoload
(defun ace-link-xref ()
"Open a visible link in an `xref--xref-buffer-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-xref
(avy--process
(ace-link--xref-collect)
(avy--style-fn avy-style)))))
(ace-link--xref-action pt)))
(declare-function xref-goto-xref "xref")
(defun ace-link--xref-action (pt)
(when (numberp pt)
(goto-char pt)
(xref-goto-xref)))
(defun ace-link--xref-collect ()
(let ((skip (text-property-any
(window-start) (window-end) 'xref-item nil))
candidates)
(save-excursion
(while (setq skip (text-property-not-all
skip (window-end) 'xref-item nil))
(push (goto-char skip) candidates)
(setq skip (text-property-any (point) (window-end)
'xref-item nil))))
(nreverse candidates)))
;;* `ace-link-custom'
;;;###autoload
(defun ace-link-custom ()
"Open a visible link in an `Custom-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-custom
(avy--process
(ace-link--custom-collect)
(avy--style-fn avy-style)))))
(ace-link--custom-action pt)))
(declare-function Custom-newline "cus-edit")
(defun ace-link--custom-action (pt)
(when (number-or-marker-p pt)
(goto-char pt)
(Custom-newline (point))))
(defun ace-link--custom-collect ()
"Collect the positions of visible links in the current `Custom-mode' buffer."
(let (candidates pt)
(save-excursion
(save-restriction
(narrow-to-region
(window-start)
(window-end))
(goto-char (point-min))
(setq pt (point))
(while (progn (widget-forward 1)
(> (point) pt))
(setq pt (point))
(when (get-char-property (point) 'button)
(push (point) candidates)))))
(nreverse candidates)))
;;* `ace-link-addr'
;;;###autoload
(defun ace-link-addr ()
"Open a visible link in a goto-address buffer."
(interactive)
(let ((pt (avy-with ace-link-addr
(avy--process
(ace-link--addr-collect)
(avy--style-fn avy-style)))))
(ace-link--addr-action pt)))
(defun ace-link--addr-action (pt)
(when (number-or-marker-p pt)
(goto-char (1+ pt))
(goto-address-at-point)))
(defun ace-link--addr-collect ()
(let (candidates)
(dolist (overlay (overlays-in (window-start) (window-end)))
(if (overlay-get overlay 'goto-address)
(push (overlay-start overlay) candidates)))
(nreverse candidates)))
;;* `ace-link-sldb'
;;;###autoload
(defun ace-link-sldb ()
"Interact with a frame or local variable in a sldb buffer."
(interactive)
(let ((pt (avy-with ace-link-sldb
(avy--process
(ace-link--sldb-collect)
(avy--style-fn avy-style)))))
(ace-link--sldb-action pt)))
(declare-function sldb-default-action "slime")
(defvar ace-link--sldb-action-fn #'sldb-default-action
"Function to call after jump.")
(defun ace-link--sldb-action (pt)
(when (number-or-marker-p pt)
(goto-char pt)
(funcall ace-link--sldb-action-fn)))
(defun ace-link--sldb-collect ()
(let ((vars (list))
(frames (list))
(frame-prop 'frame)
(var-face 'sldb-local-value-face))
(save-excursion
(goto-char (window-start))
(while (< (point) (window-end))
(when (get-text-property (point) frame-prop)
(if (get-text-property (point) 'var)
(push (text-property-any
(point)
(line-end-position)
'face var-face)
vars)
(push (point) frames)
(point)))
(forward-visible-line 1)))
;; sort variables before frames
(nreverse (nconc frames vars))))
;;* `ace-link-slime-xref'
;;;###autoload
(defun ace-link-slime-xref ()
"Open a visible link in an `slime-xref-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-slime-xref
(avy--process
(ace-link--slime-xref-collect)
(avy--style-fn avy-style)))))
(ace-link--slime-xref-action pt)))
(declare-function slime-goto-xref "slime.el")
(defun ace-link--slime-xref-action (pt)
(when (number-or-marker-p pt)
(goto-char pt)
(slime-goto-xref)))
(defun ace-link--slime-xref-collect ()
(let ((candidates (list))
(prop 'slime-location)
(pt (window-start)))
(while (and pt (< pt (window-end)))
(when (get-text-property pt prop)
(push pt candidates))
(setq pt (next-single-property-change pt prop)))
(nreverse candidates)))
;;* `ace-link-slime-inspector'
;;;###autoload
(defun ace-link-slime-inspector ()
"Interact with a value, an action or a range button in a
`slime-inspector-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-slime-inspector
(avy--process
(ace-link--slime-inspector-collect)
(avy--style-fn avy-style)))))
(ace-link--slime-inspector-action pt)))
(declare-function slime-inspector-operate-on-point "slime.el")
(declare-function slime-inspector-copy-down-to-repl "slime.el")
(defun ace-link--slime-inspector-action (pt)
(when (number-or-marker-p pt)
(goto-char pt)
(if (= pt 1)
(call-interactively #'slime-inspector-copy-down-to-repl)
(slime-inspector-operate-on-point))))
(defun ace-link--slime-inspector-collect ()
(let ((candidates (list))
(part 'slime-part-number)
(range 'slime-range-button)
(action 'slime-action-number)
(pt (window-start)))
(while (and pt (< pt (window-end)))
(when (or (get-text-property pt part)
(get-text-property pt range)
(get-text-property pt action))
(push pt candidates))
(setq pt (next-property-change pt)))
(nreverse candidates)))
;;* `ace-link-indium-inspector'
;;;###autoload
(defun ace-link-indium-inspector ()
"Interact with a value, an action or a range button in a
`indium-inspector-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-indium-inspector
(avy--process
(ace-link--indium-inspector-collect)
(avy--style-fn avy-style)))))
(ace-link--indium-inspector-action pt)))
(defun ace-link--indium-inspector-action (pt)
(when (numberp pt)
(goto-char pt)
(indium-follow-link)))
(defun ace-link--indium-inspector-collect ()
"Collect the positions of visible links in the current `indium-inspector-mode' buffer."
(let ((candidates)
(old-position))
(save-excursion
(goto-char (point-max))
(setq old-position (point))
(indium-inspector-previous-reference)
(while (not (= (point) old-position))
(push (point) candidates)
(setq old-position (point))
(indium-inspector-previous-reference)))
candidates))
;;* `ace-link-indium-debugger-frames'
;;;###autoload
(defun ace-link-indium-debugger-frames ()
"Interact with a value, an action or a range button in a
`indium-debugger-frames-mode' buffer."
(interactive)
(let ((pt (avy-with ace-link-indium-debugger-frames
(avy--process
(ace-link--indium-debugger-frames-collect)
(avy--style-fn avy-style)))))
(ace-link--indium-debugger-frames-action pt)))
(defun ace-link--indium-debugger-frames-action (pt)
(when (numberp pt)
(goto-char pt)
(indium-follow-link)))
(defun ace-link--indium-debugger-frames-collect ()
"Collect the positions of visible links in the current `indium-debugger-frames-mode' buffer."
(let ((candidates)
(old-position))
(save-excursion
(goto-char (point-max))
(setq old-position (point))
(indium-debugger-frames-previous-frame)
(while (and (not (= (point) old-position)) (not (= (point) (point-min))))
(push (point) candidates)
(setq old-position (point))
(indium-debugger-frames-previous-frame)))
candidates))
;;* Bindings
(defvar eww-link-keymap)
(defvar eww-mode-map)
(defvar custom-mode-map)
(declare-function indium-follow-link "ext:indium")
(declare-function indium-inspector-previous-reference "ext:indium")
(declare-function indium-debugger-frames-previous-frame "ext:indium")
;;;###autoload
(defun ace-link-setup-default (&optional key)
"Bind KEY to appropriate functions in appropriate keymaps."
(setq key (or key "o"))
(add-to-list 'avy-styles-alist
'(ace-link-info . at))
(add-to-list 'avy-styles-alist
'(ace-link-help . post))
(add-to-list 'avy-styles-alist
'(ace-link-woman . post))
(add-to-list 'avy-styles-alist
'(ace-link-eww . post))
(add-to-list 'avy-styles-alist
'(ace-link-w3m . post))
(add-to-list 'avy-styles-alist
'(ace-link-compilation . post))
(add-to-list 'avy-styles-alist
'(ace-link-gnus . post))
(add-to-list 'avy-styles-alist
'(ace-link-mu4e . post))
(add-to-list 'avy-styles-alist
'(ace-link-org . pre))
(add-to-list 'avy-styles-alist
'(ace-link-org-agenda . pre))
(add-to-list 'avy-styles-alist
'(ace-link-custom . pre))
(add-to-list 'avy-styles-alist
'(ace-link-addr . pre))
(add-to-list 'avy-styles-alist
'(ace-link-xref . at))
(add-to-list 'avy-styles-alist
'(ace-link-sldb . pre))
(add-to-list 'avy-styles-alist
'(ace-link-slime-xref . pre))
(add-to-list 'avy-styles-alist
'(ace-link-slime-inspector . pre))
(eval-after-load "xref"
`(define-key xref--xref-buffer-mode-map ,key 'ace-link-xref))
(eval-after-load "info"
`(define-key Info-mode-map ,key 'ace-link-info))
(eval-after-load "compile"
`(define-key compilation-mode-map ,key 'ace-link-compilation))
(eval-after-load "help-mode"
`(define-key help-mode-map ,key 'ace-link-help))
(eval-after-load "woman"
`(define-key woman-mode-map ,key 'ace-link-woman))
(eval-after-load "eww"
`(progn
(define-key eww-link-keymap ,key 'ace-link-eww)
(define-key eww-mode-map ,key 'ace-link-eww)))
(eval-after-load 'cus-edit
`(progn
(define-key custom-mode-map ,key 'ace-link-custom)))
(eval-after-load "helpful"
`(progn
(define-key helpful-mode-map ,key 'ace-link-help)))
(eval-after-load "elbank-overview"
`(progn
(define-key elbank-overview-mode-map ,key 'ace-link-help)))
(eval-after-load "elbank-report"
`(progn
(define-key elbank-report-mode-map ,key 'ace-link-help)))
(eval-after-load "indium-inspector"
`(progn
(define-key indium-inspector-mode-map ,key 'ace-link-indium-inspector)))
(eval-after-load "indium-debugger"
`(progn
(define-key indium-debugger-frames-mode-map ,key 'ace-link-indium-debugger-frames))))
(provide 'ace-link)
;;; ace-link.el ends here