I am using Term::Shell package to implement a CLI tool. This package provides a API: comp_CMD
.
This function is invoked whenever the user presses the TAB. My requirement here is:
shell> stack
TAB
over under
`shell>stack overTAB
flow sample junk
But the default comp_CMD
provides only one set of TAB options like
shell> stack
TAB
over under
`shell>stack overTAB
over under
### THE PROBLEM IS HERE
Instead of over under here, I want to get flow sample junk.