mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 17:43:44 +08:00
parent
a37d4d809e
commit
6bee85fefa
|
@ -1908,13 +1908,15 @@ expand_error_t expand_string(const wcstring &input, std::vector<completion_t> *o
|
||||||
output_storage.clear();
|
output_storage.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hack to un-expand tildes (see #647) */
|
if (total_result != EXPAND_ERROR)
|
||||||
if (!(flags & EXPAND_SKIP_HOME_DIRECTORIES))
|
|
||||||
{
|
{
|
||||||
unexpand_tildes(input, &completions);
|
/* Hack to un-expand tildes (see #647) */
|
||||||
|
if (!(flags & EXPAND_SKIP_HOME_DIRECTORIES))
|
||||||
|
{
|
||||||
|
unexpand_tildes(input, &completions);
|
||||||
|
}
|
||||||
|
out_completions->insert(out_completions->end(), completions.begin(), completions.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
out_completions->insert(out_completions->end(), completions.begin(), completions.end());
|
|
||||||
return total_result;
|
return total_result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user