Add autocomplete options for version

This commit is contained in:
Lazarus Lazaridis 2018-03-09 01:41:40 +02:00
parent 36447d94c9
commit 860f81e432

View File

@ -235,7 +235,7 @@ function _complete_goto_commands()
local IFS=$' \t\n' local IFS=$' \t\n'
# shellcheck disable=SC2207 # shellcheck disable=SC2207
COMPREPLY=($(compgen -W "-r --register -u --unregister -l --list -c --cleanup" -- "$1")) COMPREPLY=($(compgen -W "-r --register -u --unregister -l --list -c --cleanup -v --version" -- "$1"))
} }
# Completes the goto function with the available aliases # Completes the goto function with the available aliases