[Bash-completion-devel] Completion functions for wrappers for standard tools

2012-05-31 Thread suvayu ali
Hi, (Please CC: me in your responses, I'm not subscribed to the list) I have many wrapper functions scripts for standard tools. I used to define the original completion function as the completion function for my wrappers. That seems to not work any more when tried for the first time with the

Re: [Bash-completion-devel] Completion functions for wrappers for standard tools

2012-05-31 Thread Ville Skyttä
On 2012-05-31 20:25, suvayu ali wrote: $ function find_ext() { echo dummy wrapper fn for find; } $ complete -F _find find_ext [...] So my question is, how do you enable completion for my wrappers such that it works even when I try it for the first time? I'd look into loading needed

Re: [Bash-completion-devel] Completion functions for wrappers for standard tools

2012-05-31 Thread suvayu ali
Hi Ville, On Thu, May 31, 2012 at 9:24 PM, Ville Skyttä ville.sky...@iki.fi wrote: On 2012-05-31 20:25, suvayu ali wrote:  $ function find_ext() { echo dummy wrapper fn for find; }  $ complete -F _find find_ext [...] So my question is, how do you enable completion for my wrappers such that