|
|
|
|
|
by impalallama
441 days ago
|
|
the crawlers are working hard today because I got lead here just by searching for a better man page on kagi I liked the idea of using nvim but i rewrote it with bash function for easier argument handling nman () {
if [ $# -ne 1 ]; then
echo "Usage: nman <command>"
return 1
fi
command nvim "+hide Man $1"
}
|
|