summaryrefslogtreecommitdiffhomepage
path: root/attic/counsel.org
blob: 5732fb7f1cfe1879b8e22a9febc229bffd06edee (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
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
#+title: Completion configuration using ivy, counsel and friends

* ivy
  #+begin_src emacs-lisp
    (use-package ivy
      :ensure t
      :demand t
      :custom
      ((ivy-count-format "(%d/%d) ")
       (ivy-do-completion-in-region t)
       (ivy-height 20)
       (ivy-re-builders-alist '((counsel-ag . ivy--regex)
                                (counsel-rg . ivy--regex)
                                (counsel-yank-pop . ivy--regex)
                                (swiper . ivy--regex)
                                (swiper-isearch . ivy--regex)
                                (t . ivy--regex-fuzzy)))
       (ivy-use-virtual-buffers t)
       (ivy-virtual-abbreviate 'abbreviate)
       (ivy-wrap t))

      :config
      ;; used by ivy--regex-fuzzy to order results
      (use-package flx :ensure t)

      ;; Try C-o in the minibuffer
      (use-package ivy-hydra
        :after ivy
        :ensure t
        :init (setq ivy-read-action-function #'ivy-hydra-read-action))

      (add-to-list 'ivy-initial-inputs-alist
                   '(gnus-summary-move-article . ""))

      :bind (("C-R" . ivy-resume)
             ("C-x b" . ivy-switch-buffer)
             ("C-c v" . ivy-push-view)
             ("C-c V" . ivy-pop-view))
      :diminish)
  #+end_src
* counsel
  #+begin_src emacs-lisp
    (use-package counsel
      :ensure t
      :custom ((counsel-describe-function-function 'helpful-callable)
               (counsel-describe-variable-function 'helpful-variable)
               (counsel-find-file-at-point t)
               (counsel-linux-app-format-function
                #'counsel-linux-app-format-function-name-pretty)
               (counsel-mode-override-describe-bindings nil)
               (counsel-recentf-include-xdg-list t))
      :config
      :bind (("C-s" . swiper-isearch)
             ("C-S-s" . isearch-forward)
             ("M-x" . counsel-M-x)
             ("C-x f" . counsel-find-file)
             ("C-c k" . counsel-ag)
             ("C-c K" . counsel-rg)
             ("C-c l" . counsel-locate)
             ("C-c b" . counsel-git)
             ("C-c i" . counsel-imenu)
             ("C-c G" . counsel-search)
             ("s-r" . counsel-linux-app))
      :diminish)
  #+end_src
* counsel add-ons
*** recoll
  #+BEGIN_SRC emacs-lisp
    (use-package jao-recoll)
    (use-package jao-counsel-recoll
      :after counsel
      :bind (("C-c R" . jao-counsel-recoll)))
  #+END_SRC
*** notmuch
    #+begin_src emacs-lisp
      (use-package counsel-notmuch
        :ensure t
        :config (with-eval-after-load "gnus-group"
                  (define-key gnus-group-mode-map "Gg" 'counsel-notmuch)))
    #+end_src
* ivy rich
  #+begin_src emacs-lisp
    (use-package ivy-rich
      :after (ivy counsel)
      :ensure t
      :custom ((ivy-rich-path-style 'relative)
               (ivy-rich-parse-remote-buffer nil)
               (ivy-rich-parse-remote-file-path nil))
      :config
      (ivy-rich-modify-columns
       'ivy-switch-buffer
       '((ivy-rich-candidate (:width 80))
         (ivy-rich-switch-buffer-indicators (:face jao-themes-f00))
         (ivy-rich-switch-buffer-project (:width 15))
         (ivy-rich-switch-buffer-major-mode (:width 15 :face jao-themes-f12)))))
  #+end_src
* cmap
  #+begin_src emacs-lisp
    (jao-load-path "cmap")
    (use-package cmap
      :demand t
      :bind (("C-;" . cmap-cmap)
             ("C-'" . cmap-default)))
  #+end_src
*** prompter
    #+begin_src emacs-lisp
      (defun jao-cmap--hide-help ()
        (when-let ((w (get-buffer-window (help-buffer))))
          (with-selected-window w (kill-buffer-and-window))))

      (defun jao-cmap--prompter (keymap)
        (let ((display-buffer-alist '(("*Help*"
                                       (display-buffer-at-bottom)
                                       (window-parameters (mode-line-format . none))
                                       (window-height . fit-window-to-buffer)))))
          (let ((inhibit-message t))
            (describe-keymap keymap))))

      (defun jao-cmap--prompter-done ()
        (save-current-buffer (jao-cmap--hide-help)))

      (setq cmap-prompter #'jao-cmap--prompter)
      (setq cmap-prompter-done #'jao-cmap--prompter-done)
    #+end_src
*** minibuffer actions
    #+begin_src emacs-lisp
      (defun jao-cmap--completion-metadata ()
        (completion-metadata
         (buffer-substring-no-properties (field-beginning) (point))
         minibuffer-completion-table
         minibuffer-completion-predicate))

      (defun jao-cmap--completion-category ()
        (completion-metadata-get (jao-cmap--completion-metadata) 'category))

      (defmacro cmap-define-keymap (v d &rest b)
        `(defvar ,v (cmap-keymap ,@b) ,d))

      (cmap-define-keymap jao-cmap-buffer-map
        "Keymap for buffer actions."
        ("k" . kill-buffer)
        ("b" . switch-to-buffer)
        ("o" . switch-to-buffer-other-window)
        ("z" . bury-buffer)
        ("q" . kill-buffer-and-window)
        ("=" . ediff-buffers))

      ;; (cmap-define-keymap espotify-item-keymap
      ;;   "Actions for Spotify search results"
      ;;   ("a" espotify--play-album)
      ;;   ("h" espotify--show-info))

      (defvar jao-cmap--smaps
        '((command . cmap-command-map)
          ;; (espotify-search-item . espotify-item-keymap)
          (function . cmap-function-map)
          (variable . cmap-variable-map)
          (face . cmap-face-map)
          (buffer . jao-cmap-buffer-map)
          (consult-buffer . jao-cmap-buffer-map)))

      (defun jao-cmap-target-minibuffer-candidate ()
        (when (minibuffer-window-active-p (selected-window))
          (let ((cand (ivy-state-current ivy-last))
                (cat (jao-cmap--completion-category)))
            (when-let (m (alist-get cat jao-cmap--smaps))
              (cons m cand)))))

      (add-to-list 'cmap-targets #'jao-cmap-target-minibuffer-candidate)
    #+end_src
*** url / video actions
    #+begin_src emacs-lisp
      (defvar jao-cmap-video-url-rx
        (format "^https?://\\(?:www\\.\\)?%s/.+"
                (regexp-opt '("youtu.be"
                              "youtube.com"
                              "blip.tv"
                              "vimeo.com"
                              "infoq.com")
                            t))
        "A regular expression matching URLs that point to video streams")

      (defun jao-cmap--play-video (player url)
        (interactive "sURL: ")
        (let ((cmd (format "%s %s" player (shell-quote-argument url))))
          (start-process-shell-command player nil cmd)))

      (defun jao-cmap-mpv (&optional url)
        "Play video stream with mpv"
        (interactive "sURL: ")
        (jao-cmap--play-video "mpv" url))

      (defun jao-cmap-vlc (&optional url)
        "Play video stream with vlc"
        (interactive "sURL: ")
        (jao-cmap--play-video "vlc" url))

      (defun jao-cmap-target-w3m-url ()
        (when-let (url (or (thing-at-point-url-at-point)
                           (w3m-anchor)
                           w3m-current-url))
          (cons 'cmap-url-map url)))

      (defun jao-cmap-kill (&optional x)
        "Save to kill ring"
        (interactive "s")
        (kill-new x))

      (defun jao-cmap-url (url)
        "Browse URL, externally if we're already in emacs-w3m"
        (if (derived-mode-p 'w3m-mode)
            (jao-browse-with-external-browser url)
          (browse-url url)))

      (define-key cmap-url-map [return] #'jao-cmap-url)
      (define-key cmap-url-map "f" #'browse-url-firefox)
      (define-key cmap-url-map "w" #'jao-cmap-kill)

      (defun jao-cmap-target-video-url ()
        (when-let (url (jao-cmap-target-w3m-url))
          (when (string-match-p jao-cmap-video-url-rx (cdr url))
            (cons 'jao-cmap-video-url-map (cdr url)))))

      (cmap-define-keymap jao-cmap-video-url-map
        "Actions on URLs pointing to remote video streams."
        ("v" . jao-cmap-vlc)
        ([return] . jao-cmap-mpv))

      (add-to-list 'cmap-targets #'jao-cmap-target-w3m-url)
      (add-to-list 'cmap-targets #'jao-cmap-target-video-url)
    #+end_src
* hooks
  #+begin_src emacs-lisp
    (with-eval-after-load "exwm"
      (add-to-list 'exwm-input-global-keys '([?\s-r] . counsel-linux-app)))

    (with-eval-after-load "espotify"
      (require 'ivy-spotify)
      (defalias 'jao-spotify-album #'ivy-spotify-album)
      (defalias 'jao-spotify-track #'ivy-spotify-track)
      (defalias 'jao-spotify-artist #'ivy-spotify-artist)
      (defalias 'jao-spotify-playlist #'ivy-spotify-playlist))
  #+end_src
* startup
  #+begin_src emacs-lisp
    (ivy-mode 1)
    (counsel-mode 1)
    (ivy-rich-mode 1)
    (ivy-rich-project-root-cache-mode 1)
  #+end_src