1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
#
# This file is part of mpv.
#
# mpv is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# mpv is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with mpv. If not, see <http://www.gnu.org/licenses/>.
#
_mpv_options()
{
if [ -z ${_mpv_options_cache+x} ]; then
_mpv_options_cache=$(mpv --no-config --list-options)
fi
echo "$_mpv_options_cache"
}
_mpv_get_args()
{
local doc=$(_mpv_options | grep -E "^\\s*$1\\s")
local partial="$2"
local type=$(echo "$doc" | awk '{print $2;}')
# We special-case profiles to ensure we read the config
if [ "$1" = "--show-profile" ]; then
type="ShowProfile"
elif [ "$1" = "--profile" ]; then
type="Profile"
fi
declare -a candidates
case $type in
String)
if echo "$doc" | grep -q '\[file\]' ; then
if [ "$cur" = '=' ]; then
# Without this, _filedir will try and complete files starting with '='
cur=""
fi
_filedir 2>/dev/null || COMPREPLY=($(compgen -f))
return 0
else
candidates=($(mpv --no-config $1=help | grep -v ':' | awk '{print $1;}'))
candidates+=("help")
fi
;;
Flag)
candidates=("yes" "no" "help")
;;
Choices:|Object)
candidates=($(mpv --no-config $1=help | grep -v ':' | awk '{print $1;}'))
candidates+=("help")
;;
Image)
candidates=($(mpv --no-config $1=help))
candidates=("${candidates[@]:2}")
candidates+=("help")
;;
Profile)
candidates=($(mpv $1=help | grep -v ':' | awk '{print $1;}'))
candidates+=("help")
;;
ShowProfile)
candidates=($(mpv $1= | grep -v ':' | awk '{print $1;}'))
;;
*)
# There are other categories; some of which we could do something smarter
# about, with enough work.
;;
esac
COMPREPLY=($(compgen -W "${candidates[*]}" -- "${partial}"))
if [ ${#COMPREPLY[@]} -gt 1 ]; then
compopt -o nospace mpv
fi
}
# This regex detects special options where we don't want an '=' appended
_mpv_special_regex='\s(Flag.*\[not in config files\]|Print)'
_mpv_skip_regex='\sremoved \[deprecated\]'
_mpv_regular_options()
{
if [ -z ${_mpv_regular_options_cache+x} ]; then
_mpv_regular_options_cache=($(_mpv_options | grep -vE "$_mpv_skip_regex" | \
grep -vE "$_mpv_special_regex" | awk '{print "\\"$1;}' | grep '\--'))
_mpv_regular_options_cache="${_mpv_regular_options_cache[*]}"
fi
echo "$_mpv_regular_options_cache"
}
_mpv_special_options()
{
if [ -z ${_mpv_special_options_cache+x} ]; then
_mpv_special_options_cache=($(_mpv_options | grep -vE "$_mpv_skip_regex" | \
grep -E "$_mpv_special_regex" | awk '{print "\\"$1;}' | grep '\--'))
_mpv_special_options_cache="${_mpv_special_options_cache[*]}"
fi
echo "$_mpv_special_options_cache"
}
_mpv()
{
compopt +o nospace mpv
# _filedir requires the current candidate be in $cur
local cur=${COMP_WORDS[COMP_CWORD]}
local prev=${COMP_WORDS[((COMP_CWORD - 1))]}
if [ "$cur" = '=' ]; then
# If the current word is '=' then we are looking for an argument for the
# option specified by the previous word.
_mpv_get_args "$prev"
elif [ "$prev" = '=' ]; then
# If the previous word is '=' then we are completing an argument for the
# option specified by the word before the '='.
local prevprev=${COMP_WORDS[((COMP_CWORD - 2))]}
_mpv_get_args "$prevprev" "$cur"
else
case $cur in
-*)
COMPREPLY=($(compgen -W "$(_mpv_regular_options)" -S '=' -- "${cur}"))
local normal_count=${#COMPREPLY[@]}
COMPREPLY+=($(compgen -W "$(_mpv_special_options)" -- "${cur}"))
if [ $normal_count -gt 0 -o ${#COMPREPLY[@]} -gt 1 ]; then
compopt -o nospace mpv
fi
;;
*)
_filedir 2>/dev/null || COMPREPLY=($(compgen -f))
;;
esac
fi
}
complete -F _mpv mpv
|