Browse Source

Rename archive module functions

master
Sorin Ionescu 11 years ago
parent
commit
16aa48baeb
  1. 2
      modules/README.md
  2. 6
      modules/archive/README.md
  3. 4
      modules/archive/functions/_lsarchive
  4. 4
      modules/archive/functions/_unarchive
  5. 2
      modules/archive/functions/lsarchive
  6. 2
      modules/archive/functions/unarchive

2
modules/README.md

@ -8,7 +8,7 @@ Load modules in *zpreztorc*. The order matters. @@ -8,7 +8,7 @@ Load modules in *zpreztorc*. The order matters.
Archive
-------
Provides functions to extract and list popular archive formats.
Provides functions to list and extract archives.
Command-Not-Found
-----------------

6
modules/archive/README.md

@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
Archive
=======
Provides functions to extract and list popular archive formats.
Provides functions to list and extract archives.
Functions
---------
- `extract` extracts the contents of one or more archives.
- `ls-archive` lists the contents of one or more archives.
- `lsarchive` lists the contents of one or more archives.
- `unarchive` extracts the contents of one or more archives.
Supported Formats
-----------------

4
modules/archive/functions/_ls-archive → modules/archive/functions/_lsarchive

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
#compdef ls-archive
#compdef lsarchive
#autoload
#
# Completes ls-archive.
# Completes lsarchive.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>

4
modules/archive/functions/_extract → modules/archive/functions/_unarchive

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
#compdef extract
#compdef unarchive
#autoload
#
# Completes extract.
# Completes unarchive.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>

2
modules/archive/functions/ls-archive → modules/archive/functions/lsarchive

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
#
# Lists the contents of popular archive formats.
# Lists the contents of archives.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>

2
modules/archive/functions/extract → modules/archive/functions/unarchive

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
#
# Extracts the contents of popular archive formats.
# Extracts the contents of archives.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
Loading…
Cancel
Save