Subject: | problem tab completion for args and exclude_from_history |
Hi,
I tried your example COMMAND SET but it doesn't work with tab completion
of the args (create and delete) and also in my program I tried to use
it, but nothing works. It requires other module?
Also I tried exclude_from_history about a command to set a password, but
It doesn't work.
"password" => {
desc => "Change password",
exclude_from_history => 1,
minargs => 1, maxargs => 1,
proc => sub {
$currentObj->{password} = $_[0];
},
},
And I create my term with :
my $term1 = new Term::ShellUI(
prompt => "SHELL>",
commands => getCommands(),
history_file => '~/.shellui-synopsis-history',
);
suggestion?