From 09c234781f1e6eba6936bf5a0217194cad96340a Mon Sep 17 00:00:00 2001 From: 0x28 Date: Sun, 1 Dec 2019 16:49:26 +0100 Subject: [PATCH] Add support for tar-mode Add evil keybindings for the builtin tar-mode. --- evil-collection.el | 1 + modes/tar-mode/evil-collection-tar-mode.el | 81 ++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 modes/tar-mode/evil-collection-tar-mode.el diff --git a/evil-collection.el b/evil-collection.el index bd86ba8..29f2500 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -224,6 +224,7 @@ through removing their entry from `evil-collection-mode-list'." slime sly tablist + tar-mode (term term ansi-term multi-term) tetris tide diff --git a/modes/tar-mode/evil-collection-tar-mode.el b/modes/tar-mode/evil-collection-tar-mode.el new file mode 100644 index 0000000..cf4e920 --- /dev/null +++ b/modes/tar-mode/evil-collection-tar-mode.el @@ -0,0 +1,81 @@ +;;; evil-collection-tar-mode.el --- Evil bindings for tar-mode. -*- lexical-binding: t -*- + +;; Copyright (C) 2019 James Nguyen + +;; Author: 0x28 +;; Maintainer: James Nguyen +;; Pierre Neidhardt +;; URL: https://github.com/emacs-evil/evil-collection +;; Version: 0.0.1 +;; Package-Requires: ((emacs "25.1")) +;; Keywords: evil, tar-mode, archive, bindings, files + +;; 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: +;;; Evil bindings for `tar-mode'. + +;;; Code: +(require 'tar-mode) +(require 'evil-collection) + +(defconst evil-collection-tar-mode-maps '(tar-mode-map)) + +;;;###autoload +(defun evil-collection-tar-mode-setup () + "Set up `evil' bindings for `tar-mode'." + (evil-set-initial-state 'tar-mode 'normal) + (evil-collection-define-key 'normal 'tar-mode-map + "j" 'tar-next-line + "k" 'tar-previous-line + (kbd "C-j") 'tar-next-line + (kbd "C-k") 'tar-previous-line + "gj" 'tar-next-line + "gk" 'tar-previous-line + + "gg" 'beginning-of-buffer + "G" 'end-of-buffer + + ;; open + (kbd "RET") 'tar-extract + (kbd "S-") 'tar-extract-other-window + (kbd "M-") 'tar-view + "go" 'tar-extract-other-window + "gO" 'tar-view + + "d" 'tar-flag-deleted + "r" 'tar-rename-entry + "x" 'tar-expunge + "M" 'tar-chmod-entry + "P" 'tar-chgrp-entry + "O" 'tar-chown-entry + + ;; refresh + "gr" 'revert-buffer + + ;; create + "I" 'tar-new-entry + + ;; write + "C" 'tar-copy + + ;; mark + "u" 'tar-unflag + "U" 'tar-clear-modification-flags + + ;; quit + "q" 'quit-window)) + +(provide 'evil-collection-tar-mode) +;;; evil-collection-tar-mode.el ends here