blob: 84207ee8a31dfb367fc9c560e7717fa405419df9 (
plain)
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
|
;;; km-avy.el --- Extensions for avy
;; Copyright (C) 2012-2018 Kyle Meyer <kyle@kyleam.com>
;; Author: Kyle Meyer <kyle@kyleam.com>
;; URL: https://gitlab.com/kyleam/emacs.d
;; This program 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 of the License, 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.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
(require 'avy)
(require 'cl-macs)
(defmacro km/avy-after-goto (&rest body)
(declare (indent defun) (debug (body)))
(let ((result (cl-gensym)))
`(let ((,result
(let ((avy-all-windows nil))
(call-interactively #'avy-goto-subword-1))))
(when (integerp ,result)
,@body))))
(declare-function occur-mode-display-occurrence "replace")
;;;###autoload
(defun km/occur-avy-goto-subword-1 ()
"Like `avy-goto-subword-1', but display occurence."
(interactive)
(km/avy-after-goto (occur-mode-display-occurrence)))
(declare-function compilation-display-error "compile")
;;;###autoload
(defun km/grep-avy-goto-subword-1 ()
"Like `avy-goto-subword-1', but call `compilation-display-error'."
(interactive)
(km/avy-after-goto (compilation-display-error)))
(declare-function org-agenda-do-context-action "org-agenda")
;;;###autoload
(defun km/org-agenda-avy-goto-subword-1 ()
(interactive)
(km/avy-after-goto (org-agenda-do-context-action)))
(declare-function magit-diff-show-or-scroll-up "magit-diff")
;;;###autoload
(defun km/magit-avy-goto-subword-1 ()
"Like `km/avy-goto-subword-1', but maybe show commit and limit to window."
(interactive)
(km/avy-after-goto
(when (derived-mode-p 'magit-log-mode)
(magit-diff-show-or-scroll-up))))
(declare-function gnus-summary-scroll-up "gnus-sum" (lines))
;;;###autoload
(defun km/gnus-avy-goto-subword-and-select ()
(interactive)
(km/avy-after-goto (gnus-summary-scroll-up 0)))
(declare-function elfeed-search-show-entry "elfeed-search" (entry))
;;;###autoload
(defun km/elfeed-avy-goto-subword-1 ()
(interactive)
(km/avy-after-goto
(call-interactively #'elfeed-search-show-entry)))
(declare-function notmuch-search-show-thread "notmuch" (&optional elide-toggle))
(declare-function notmuch-tree-show-message "notmuch-tree" (ARG))
;;;###autoload
(defun km/notmuch-avy-goto-subword-1 ()
(interactive)
(km/avy-after-goto
(cl-case major-mode
(notmuch-search-mode
(notmuch-search-show-thread))
(notmuch-tree-mode
(call-interactively #'notmuch-tree-show-message)))))
;;;###autoload
(defun km/avy-action-copy-line (pt)
"Copy line containing PT."
;; Modified from `avy-action-copy'.
(save-excursion
(let (str)
(goto-char pt)
(setq str (buffer-substring (line-beginning-position)
(line-end-position)))
(kill-new str)
(message "Copied: %s" str)))
(let ((dat (ring-ref avy-ring 0)))
(select-frame-set-input-focus
(window-frame (cdr dat)))
(select-window (cdr dat))
(goto-char (car dat))))
(provide 'km-avy)
;;; km-avy.el ends here
|