mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 03:01:15 -03:00
Fix for busted completions (tab completion of directories was failing)
This commit is contained in:
@@ -822,7 +822,7 @@ static int wildcard_expand_internal( const wchar_t *wc,
|
||||
{
|
||||
res = 1;
|
||||
completion_t data_to_push(base_dir);
|
||||
if ( std::find( out.begin(), out.end(), data_to_push ) != out.end() ){
|
||||
if (std::find( out.begin(), out.end(), data_to_push ) == out.end()) {
|
||||
out.push_back( data_to_push);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user