mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
completions/ffmpeg: Add missing parenthesis
Going by the other `string match`, this appears to just be missing a ")". Fixes #8514
This commit is contained in:
parent
51177ef0ae
commit
42602ba4fc
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ function __fish_ffmpeg_complete_filter
|
|||
set -l filter_type all
|
||||
if string match -rq -- '^-(vf(ilter)?|f(ilter)?:v)' (__fish_ffmpeg_last_arg)
|
||||
set filter_type video
|
||||
else if string match -rq -- '^-(af(ilter)?|f(ilter)?:a' (__fish_ffmpeg_last_arg)
|
||||
else if string match -rq -- '^-(af(ilter)?|f(ilter)?:a)' (__fish_ffmpeg_last_arg)
|
||||
set filter_type audio
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue