Unverified Commit 621de1e2 authored by Felix Stupp's avatar Felix Stupp Committed by GitHub
Browse files

colorized-man-pages: add hooks for dman and debman commands (#8776)

* colorized-man-pages: Added hooks for commands dman and debman

`dman` and `debman` are tools from the package `debian-goodies` for
Debian systems (see https://packages.debian.org/stable/debian-goodies

).
They can display man pages from manpages.debian.org or local debian
packages respectively.

README of the plugin is also updated.

* Simplify syntax for future changes

* Fix README syntax
Co-authored-by: default avatarMarc Cornellà <marc.cornella@live.com>
parent 2a081d6e
...@@ -8,6 +8,9 @@ To use it, add `colored-man-pages` to the plugins array in your zshrc file: ...@@ -8,6 +8,9 @@ To use it, add `colored-man-pages` to the plugins array in your zshrc file:
plugins=(... colored-man-pages) plugins=(... colored-man-pages)
``` ```
It will also automatically colorize man pages displayed by `dman` or `debman`,
from [`debian-goodies`](https://packages.debian.org/stable/debian-goodies).
You can also try to color other pages by prefixing the respective command with `colored`: You can also try to color other pages by prefixing the respective command with `colored`:
```zsh ```zsh
......
...@@ -31,6 +31,9 @@ function colored() { ...@@ -31,6 +31,9 @@ function colored() {
"$@" "$@"
} }
function man() { # Colorize man and dman/debman (from debian-goodies)
colored man "$@" function man \
dman \
debman {
colored $0 "$@"
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment