mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 23:45:44 +08:00
Fix for bogus completions for function names
This commit is contained in:
parent
41e562ebc2
commit
ce7c681462
|
@ -1855,8 +1855,8 @@ void complete(const wcstring &cmd_with_subcmds, std::vector<completion_t> &comps
|
|||
{
|
||||
case parse_statement_decoration_none:
|
||||
use_command = true;
|
||||
use_function = false;
|
||||
use_builtin = false;
|
||||
use_function = true;
|
||||
use_builtin = true;
|
||||
break;
|
||||
|
||||
case parse_statement_decoration_command:
|
||||
|
|
Loading…
Reference in New Issue
Block a user