Initial checkin

This commit is contained in:
2015-08-21 02:14:05 -07:00
commit d7ebb8e0d2
15 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
function __fish_adb_devices
adb devices | tail -n +2 | cut -f 1
end
complete -c adb -n '__fish_contains_opt -s s' -a '(__fish_adb_devices)' -d 'Device' -f