Rename archive module functions
This commit is contained in:
parent
f007820a14
commit
16aa48baeb
|
@ -8,7 +8,7 @@ Load modules in *zpreztorc*. The order matters.
|
||||||
Archive
|
Archive
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Provides functions to extract and list popular archive formats.
|
Provides functions to list and extract archives.
|
||||||
|
|
||||||
Command-Not-Found
|
Command-Not-Found
|
||||||
-----------------
|
-----------------
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
Archive
|
Archive
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Provides functions to extract and list popular archive formats.
|
Provides functions to list and extract archives.
|
||||||
|
|
||||||
Functions
|
Functions
|
||||||
---------
|
---------
|
||||||
|
|
||||||
- `extract` extracts the contents of one or more archives.
|
- `lsarchive` lists the contents of one or more archives.
|
||||||
- `ls-archive` lists the contents of one or more archives.
|
- `unarchive` extracts the contents of one or more archives.
|
||||||
|
|
||||||
Supported Formats
|
Supported Formats
|
||||||
-----------------
|
-----------------
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#compdef ls-archive
|
#compdef lsarchive
|
||||||
#autoload
|
#autoload
|
||||||
|
|
||||||
#
|
#
|
||||||
# Completes ls-archive.
|
# Completes lsarchive.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
@ -1,8 +1,8 @@
|
||||||
#compdef extract
|
#compdef unarchive
|
||||||
#autoload
|
#autoload
|
||||||
|
|
||||||
#
|
#
|
||||||
# Completes extract.
|
# Completes unarchive.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Lists the contents of popular archive formats.
|
# Lists the contents of archives.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Extracts the contents of popular archive formats.
|
# Extracts the contents of archives.
|
||||||
#
|
#
|
||||||
# Authors:
|
# Authors:
|
||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
Loading…
Reference in a new issue