mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Revert "feat: adb completion cleared of awk"
It's broken, see https://github.com/fish-shell/fish-shell/pull/10184
and doesn't really help I don't think.
This reverts commit ee837f254b
.
This commit is contained in:
parent
b75e5ee823
commit
6eddaa37af
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ function __fish_adb_list_files
|
|||
end
|
||||
|
||||
# Return list of directories suffixed with '/'
|
||||
__fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2\>/dev/null | string -r '$' /
|
||||
__fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2\>/dev/null | awk '{print $0"/"}'
|
||||
# Return list of files
|
||||
__fish_adb_run_command find -H "$token*" -maxdepth 0 -type f 2\>/dev/null
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue