aitjcize / cppman

C++ 98/11/14 manual pages for Linux/MacOS
GNU General Public License v3.0
1.27k stars 79 forks source link

Feat: add bash and zsh completion files #101

Closed SGSSGene closed 5 years ago

SGSSGene commented 5 years ago

Feat: add bash and zsh completion files

This adds completions file for bash and zsh. The setup.py is changed so the files are being installed to

Bash treats ':' as white spaces which makes using bash completion not as nice as I wished (zsh does not have this issue). This can be fixed for bash by adding the following line to ~/.bashrc

export COMP_WORDBREAKS=" /\"\'><;|&("

cppman-srceen

aitjcize commented 5 years ago

This is great!