wedens / dired-atool

Pack/unpack files with atool on dired.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dired-atool

Build Status MELPA MELPA Stable

Dired-atool is an utility to pack/unpack files with atool on dired.

Requirements

  • Emacs 24 or later

Installation

You can install dired-atool from MELPA or MELPA Stable by following steps:

  1. Setup the Emacs built-in package manager to use MELPA or MELPA Stable.
    MELPA's documentation is here.

  2. Install dired-atool.
    M-x package-install dired-atool

Setup key bindings

Call dired-atool-setup in your init.el like below:

(dired-atool-setup)

or M-x dired-atool-setup. dired-atool-setup sets key bindings of dired-mode-map below:

key command
z dired-atool-do-unpack
Z dired-atool-do-pack

You can also set key bindings manually like below:

(require 'dired)

(define-key dired-mode-map "z" #'dired-atool-do-unpack)
(define-key dired-mode-map "Z" #'dired-atool-do-pack)

Versioning

The versioning of dired-atool follows Semantic Versioning 2.0.0.

Commands

dired-atool-do-unpack

This unpacks file(s) selected/marked on dired.

dired-atool-do-unpack-with-subdirectory

This is an unpacking command like dired-atool-do-unpack. But this makes subdirectories in the current directory and unpacks files into them.

dired-atool-do-pack

This packs file(s) selected/marked on dired.

About

Pack/unpack files with atool on dired.


Languages

Language:Emacs Lisp 91.8%Language:Ruby 8.2%