mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
44d13869ad
Disable php completion for the 4th part of the command, since php-eselect is differently designed and causes errors Closes #1131.
7 lines
288 B
Fish
7 lines
288 B
Fish
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
|