Allow filename completion for screen

Screen commands can be passed an executable to run like:

$ screen -dR my_session /usr/bin/fish

This commit enables completion for that filename
This commit is contained in:
Collin Styles 2019-02-22 10:58:23 -08:00 committed by ridiculousfish
parent e475b1a375
commit 06f832aae1

View file

@ -50,7 +50,6 @@ end
# detect socket directory for mac users # detect socket directory for mac users
__fish_detect_screen_socket_dir __fish_detect_screen_socket_dir
complete -c screen -x
complete -c screen -s a -d 'Include all capabilitys' complete -c screen -s a -d 'Include all capabilitys'
complete -c screen -s A -d 'Adapt window size' complete -c screen -s A -d 'Adapt window size'
complete -c screen -s c -r -d 'Specify init file' complete -c screen -s c -r -d 'Specify init file'