diff options
author | Aaron N. Brock <AaronNBrock@gmail.com> | 2019-11-17 13:55:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-17 13:55:02 -0500 |
commit | 34b5ff588bdd96970d63cc5763b9b391fd3199fc (patch) | |
tree | 675a2ec1d968c449547b6c9fb820202d9014af6d /plugins/colorize/README.md | |
parent | 8aa070db0e1f8a5752f0e45834b7093b9b72860f (diff) | |
parent | d08238fb0f5150bfd0be8201537a2a8ca6dbbdc9 (diff) | |
download | zsh-34b5ff588bdd96970d63cc5763b9b391fd3199fc.tar.gz zsh-34b5ff588bdd96970d63cc5763b9b391fd3199fc.tar.bz2 zsh-34b5ff588bdd96970d63cc5763b9b391fd3199fc.zip |
Merge pull request #1 from ProbstDJakob/colorize-chroma-support
Fix some issues
Diffstat (limited to 'plugins/colorize/README.md')
-rw-r--r-- | plugins/colorize/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/colorize/README.md b/plugins/colorize/README.md index b6e27fd27..38d17dc76 100644 --- a/plugins/colorize/README.md +++ b/plugins/colorize/README.md @@ -14,7 +14,7 @@ plugins=(... colorize) ### Colorize tool -Colorize supports using either the `pygmentize` tool or the `chroma` tool. By default colorize uses `pygmentize` unless it's not installed & `chroma` is installed. However, you can override this with the `ZSH_COLORIZE_TOOL` environment variable: +Colorize supports `pygmentize` and `chroma` as syntax highlighter. By default colorize uses `pygmentize` unless it's not installed and `chroma` is. This can be overridden by the `ZSH_COLORIZE_TOOL` environment variable: ``` ZSH_COLORIZE_TOOL=chroma @@ -30,7 +30,7 @@ ZSH_COLORIZE_STYLE="colorful" ## Usage -* `ccat <file> [files]`: colorize the contents of the file (or files, if more than one are provided). +* `ccat <file> [files]`: colorize the contents of the file (or files, if more than one are provided). If no arguments are passed it will colorize the standard input or stdin. * `cless <file> [files]`: colorize the contents of the file (or files, if more than one are provided) and |