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: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
Felix Stupp
2020-03-30 18:13:12 +00:00
committed by GitHub
parent 2a081d6e5e
commit 621de1e20b
2 changed files with 8 additions and 2 deletions

View File

@@ -31,6 +31,9 @@ function colored() {
"$@"
}
function man() {
colored man "$@"
# Colorize man and dman/debman (from debian-goodies)
function man \
dman \
debman {
colored $0 "$@"
}