Unblock builtins from completions

The `head_exists` value was being reset after being set to true for most
builtins, causing completions to not trigger.
This commit is contained in:
Mahmoud Al-Qudsi 2018-04-03 14:05:07 -05:00
parent 99ecaec175
commit cc50103e53

View file

@ -870,12 +870,12 @@ bool completer_t::complete_param(const wcstring &scmd_orig, const wcstring &spop
run_on_main_thread([&completion_snapshot] () {
completion_snapshot = std::move(env_vars_snapshot_t( (wchar_t const * const []) { L"fish_function_path", nullptr } ));
});
}
head_exists = function_exists_no_autoload(cmd.c_str(), completion_snapshot);
// While it may seem like first testing `path_get_path` before resorting to an env lookup may be faster, path_get_path can potentially
// do a lot of FS/IO access, so env.get() + function_exists() should still be faster.
head_exists = head_exists || path_get_path(cmd, nullptr);
}
if (!head_exists) {
//Do not load custom completions if the head does not exist