;;; evil-collection-deadgrep.el --- Bindings for deadgrep -*- lexical-binding: t -*- ;; Copyright (C) 2018 James Nguyen ;; Author: James Nguyen ;; Maintainer: James Nguyen ;; Pierre Neidhardt ;; URL: https://github.com/emacs-evil/evil-collection ;; Version: 0.0.1 ;; Package-Requires: ((emacs "29.1")) ;; Keywords: evil, emacs, tools ;; 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 . ;;; Commentary: ;;; Bindings for deadgrep. ;;; Code: (require 'evil-collection) (require 'deadgrep nil t) (defconst evil-collection-deadgrep-maps '(deadgrep-edit-mode-map deadgrep-mode-map)) ;;;###autoload (defun evil-collection-deadgrep-setup () "Set up `evil' bindings for deadgrep.." (evil-collection-define-key 'normal 'deadgrep-edit-mode-map (kbd "") 'deadgrep-mode) (evil-collection-define-key 'normal 'deadgrep-mode-map "i" 'deadgrep-edit-mode) (evil-collection-define-push-action evil-collection-deadgrep-action deadgrep-visit-result) (evil-collection-bind 'deadgrep-mode-map 'section-toggle 'deadgrep-toggle-file-results 'action 'evil-collection-deadgrep-action 'action-other 'deadgrep-visit-result-other-window 'next-item 'deadgrep-forward 'prev-item 'deadgrep-backward 'next-section 'deadgrep-forward 'prev-section 'deadgrep-backward 'quit 'quit-window 'quit-save 'quit-window 'quit-cancel 'evil-quit 'refresh 'deadgrep-restart 'delete-2 'deadgrep-kill-process) (evil-collection-bind 'deadgrep-edit-mode-map 'action 'deadgrep-visit-result)) (provide 'evil-collection-deadgrep) ;;; evil-collection-deadgrep.el ends here