]> code.delx.au - gnu-emacs-elpa/blob - packages/swiper/ivy-hydra.el
Merge commit 'e9530990914c1d81889269b4a8365b8003625557' from swiper
[gnu-emacs-elpa] / packages / swiper / ivy-hydra.el
1 ;;; ivy-hydra.el --- Additional key bindings for Ivy -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2015 Free Software Foundation, Inc.
4
5 ;; Author: Oleh Krehel
6
7 ;; This file is part of GNU Emacs.
8
9 ;; This file is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 3, or (at your option)
12 ;; any later version.
13
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; For a full copy of the GNU General Public License
20 ;; see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23 ;;
24 ;; This package provides the `hydra-ivy/body' command, which is a
25 ;; quasi-prefix map, with many useful bindings. These bindings are
26 ;; shorter than usual, using mostly unprefixed keys.
27
28 ;;; Code:
29 (require 'hydra nil t)
30 (require 'ivy)
31
32 (eval-when-compile
33 (unless (package-installed-p 'hydra)
34 (defmacro defhydra (name &rest _)
35 "This is a stub for the uninstalled `hydra' package."
36 `(defun ,(intern (format "%S/body" name)) ()
37 (interactive)
38 (let ((enable-recursive-minibuffers t))
39 (if (yes-or-no-p "Package `hydra' not installed. Install?")
40 (progn
41 (package-install 'hydra)
42 (save-window-excursion
43 (find-library "ivy-hydra")
44 (byte-compile-file (buffer-file-name) t)))
45 (error "Please install `hydra' and recompile/reinstall `ivy-hydra'")))))))
46
47 (defhydra hydra-ivy (:hint nil
48 :color pink)
49 "
50 ^^^^^^ ^Yes^ ^No^ ^Maybe^
51 ^^^^^^^^^^^^^^---------------------------------------
52 ^ ^ _k_ ^ ^ _f_ollow _i_nsert _c_: calling %s(if ivy-calling \"on\" \"off\")
53 _h_ ^+^ _l_ _d_one _o_ops _m_: matcher %s(if (eq ivy--regex-function 'ivy--regex-fuzzy) \"fuzzy\" \"ivy\")
54 ^ ^ _j_ ^ ^ ^ ^ ^ ^ _<_/_>_: shrink/grow window
55 "
56 ;; arrows
57 ("h" ivy-beginning-of-buffer)
58 ("j" ivy-next-line)
59 ("k" ivy-previous-line)
60 ("l" ivy-end-of-buffer)
61 ;; actions
62 ("o" keyboard-escape-quit :exit t)
63 ("C-g" keyboard-escape-quit :exit t)
64 ("i" nil)
65 ("C-o" nil)
66 ("f" ivy-alt-done :exit nil)
67 ("C-j" ivy-alt-done :exit nil)
68 ("d" ivy-done :exit t)
69 ("C-m" ivy-done :exit t)
70 ("c" ivy-toggle-calling)
71 ("m" ivy-toggle-fuzzy)
72 (">" ivy-minibuffer-grow)
73 ("<" ivy-minibuffer-shrink))
74
75 (provide 'ivy-hydra)
76
77 ;;; ivy-hydra.el ends here