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" }
I liked the idea of using nvim but i rewrote it with bash function for easier argument handling