60 lines
2.3 KiB
EmacsLisp
60 lines
2.3 KiB
EmacsLisp
|
|
;;; evil-collection-difftastic.el --- Bindings for `difftastic' -*- lexical-binding: t -*-
|
||
|
|
|
||
|
|
;; Copyright (C) 2025 hiecaq
|
||
|
|
|
||
|
|
;; Author: hiecaq <soc.github@hiecaq.org>
|
||
|
|
;; Maintainer: hiecaq <soc.github@hiecaq.org>
|
||
|
|
;; URL: https://github.com/emacs-evil/evil-collection
|
||
|
|
;; Version: 0.0.1
|
||
|
|
;; Package-Requires: ((emacs "29.1"))
|
||
|
|
;; Keywords: evil, emacs, convenience, 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 <http://www.gnu.org/licenses/>.
|
||
|
|
|
||
|
|
;;; Commentary:
|
||
|
|
;;; Bindings for difftastic.
|
||
|
|
|
||
|
|
;;; Code:
|
||
|
|
(require 'evil-collection)
|
||
|
|
(require 'difftastic nil t)
|
||
|
|
|
||
|
|
(defvar difftastic-mode-map)
|
||
|
|
|
||
|
|
(defconst evil-collection-difftastic-maps '(difftastic-mode-map))
|
||
|
|
|
||
|
|
;;;###autoload
|
||
|
|
(defun evil-collection-difftastic-setup ()
|
||
|
|
"Set up `evil' bindings for `difftastic'."
|
||
|
|
(evil-collection-define-key 'normal 'difftastic-mode-map
|
||
|
|
"zc" 'difftastic-hide-chunk
|
||
|
|
"zo" 'difftastic-show-chunk
|
||
|
|
"o" 'difftastic-diff-visit-worktree-file)
|
||
|
|
(evil-collection-bind 'difftastic-mode-map
|
||
|
|
'action 'difftastic-diff-visit-file
|
||
|
|
'next-item 'difftastic-next-chunk
|
||
|
|
'prev-item 'difftastic-previous-chunk
|
||
|
|
'next-section 'difftastic-next-file
|
||
|
|
'prev-section 'difftastic-previous-file
|
||
|
|
'next-section-2 'difftastic-next-chunk
|
||
|
|
'prev-section-2 'difftastic-previous-chunk
|
||
|
|
'quit 'difftastic-leave
|
||
|
|
'quit-save 'difftastic-quit
|
||
|
|
'quit-cancel 'difftastic-quit
|
||
|
|
'refresh 'difftastic-rerun
|
||
|
|
'section-toggle 'difftastic-toggle-chunk))
|
||
|
|
|
||
|
|
(provide 'evil-collection-difftastic)
|
||
|
|
|
||
|
|
;;; evil-collection-difftastic.el ends here
|