From dcde198c94e30f1d9238bb88c461ba6001c535a3 Mon Sep 17 00:00:00 2001 From: Shayan <67392584+pxeemo@users.noreply.github.com> Date: Sat, 7 Jun 2025 13:35:13 +0330 Subject: [PATCH] completions/adb: add listing device files for exec-out subcommand --- share/completions/adb.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/adb.fish b/share/completions/adb.fish index 127e59522..6cc5e342d 100644 --- a/share/completions/adb.fish +++ b/share/completions/adb.fish @@ -195,6 +195,7 @@ complete -n '__fish_seen_subcommand_from sideload' -c adb -k -xa '(__fish_comple complete -n '__fish_seen_subcommand_from reconnect' -c adb -x -a device -d 'Kick current connection from device side and make it reconnect.' # commands that accept listing device files +complete -n '__fish_seen_subcommand_from exec-out' -c adb -f -a "(__fish_adb_list_files)" -d 'File on device' complete -n '__fish_seen_subcommand_from shell' -c adb -f -a "(__fish_adb_list_files)" -d 'File on device' complete -n '__fish_seen_subcommand_from pull' -c adb -F -a "(__fish_adb_list_files)" -d 'File on device' complete -n '__fish_seen_subcommand_from push' -c adb -ka "(__fish_adb_list_files)" -d 'File on device'