Tagged Questions
The programmable-completion tag has no wiki summary.
5
votes
1answer
164 views
zsh: use completions for command X when I type command Y
In zsh, I have a function called g which acts like this:
with no arguments, call git status
with one or more arguments, delegate to git with all given arguments - i.e. call git $@
I would like the ...
3
votes
2answers
302 views
Is there a good, online tutorial for learning intermediate-to-advanced Bash programmable completion?
My current skill level with programmable completion is pretty basic — about at "complete -d cd". I'd like to significantly increase my knowledge (and use) of completion to increase my CLI ...
2
votes
6answers
303 views
Bash Completion: What can we do with it, what lies in the future
Bash lets you complete commands names and names of files in the arguments with the TAB key.
But why not also common options to commands? Why not, even better, a completion system that tells you what ...