aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil-collection/modes/tar-mode
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-05 01:19:30 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-05 01:19:30 -0400
commitbdf9a71ab7baa2b1de9abcfd5df1a9107a55d141 (patch)
treec4524e6c41aa5107211103401dabfaefc81aa882 /.config/emacs/lisp/evil-collection/modes/tar-mode
parentfe3984f541bd32bdfa418afb305b614176b55ca0 (diff)
add a bunch of emacs packages HELP
Diffstat (limited to '.config/emacs/lisp/evil-collection/modes/tar-mode')
-rw-r--r--.config/emacs/lisp/evil-collection/modes/tar-mode/README.org27
-rw-r--r--.config/emacs/lisp/evil-collection/modes/tar-mode/evil-collection-tar-mode.el81
2 files changed, 108 insertions, 0 deletions
diff --git a/.config/emacs/lisp/evil-collection/modes/tar-mode/README.org b/.config/emacs/lisp/evil-collection/modes/tar-mode/README.org
new file mode 100644
index 0000000..fbb0da6
--- /dev/null
+++ b/.config/emacs/lisp/evil-collection/modes/tar-mode/README.org
@@ -0,0 +1,27 @@
+* tar-mode
+
+ Evil bindings for =tar-mode=, the built-in tar archive browser.
+
+** Key bindings
+
+ | Command | Original | Evil |
+ |--------------------------------+-----------------------------+--------------------|
+ | =tar-next-line= | =n=, =SPC=, =C-n=, =<down>= | =j=, =gj=, =C-j= |
+ | =tar-previous-line= | =p=, =C-p=, =<up>= | =k=, =gk=, =C-k= |
+ | =beginning-of-buffer= | n/a | =gg= |
+ | =end-of-buffer= | n/a | =G= |
+ | =tar-extract= | =RET=, =e=, =f= | =RET= |
+ | =tar-extract-other-window= | =o=, =E= | =go=, =S-<return>= |
+ | =tar-view= | =v= | =gO=, =M-<return>= |
+ | =tar-flag-deleted= | =d=, =C-d= | =d= |
+ | =tar-rename-entry= | =R= | =r= |
+ | =tar-expunge= | =x= | =x= |
+ | =tar-chmod-entry= | =M= | =M= |
+ | =tar-chgrp-entry= | =G= | =P= |
+ | =tar-chown-entry= | =O= | =O= |
+ | =revert-buffer= | =g= | =gr= |
+ | =tar-new-entry= | =I= | =I= |
+ | =tar-copy= | =C= | =C= |
+ | =tar-unflag= | =u= | =u= |
+ | =tar-clear-modification-flags= | n/a | =U= |
+ | =quit-window= | n/a | =q= |
diff --git a/.config/emacs/lisp/evil-collection/modes/tar-mode/evil-collection-tar-mode.el b/.config/emacs/lisp/evil-collection/modes/tar-mode/evil-collection-tar-mode.el
new file mode 100644
index 0000000..5df995d
--- /dev/null
+++ b/.config/emacs/lisp/evil-collection/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 Michael Arndt
+
+;; Author: 0x28
+;; Maintainer: James Nguyen <james@jojojames.com>
+;; Pierre Neidhardt <mail@ambrevar.xyz>
+;; URL: https://github.com/emacs-evil/evil-collection
+;; Version: 0.0.1
+;; Package-Requires: ((emacs "26.3"))
+;; 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 <http://www.gnu.org/licenses/>.
+
+;;; 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-<return>") 'tar-extract-other-window
+ (kbd "M-<return>") '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