aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_service_actions.fish
blob: ab91f786091525777b0e3a1631593a83d731f31d (plain)
1
2
3
4
5
6
7
function __fish_complete_service_actions -d "Print a list of all basic service \
        actions"
    set -l actions start 'Start the service'
    set -l actions $actions stop 'Stop the service'
    set -l actions $actions restart 'Restart the service'
    printf "%s\t%s\n" $actions
end