From 5b9a000b9b795598d559e46c47d6d4211ff22448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 23 Jun 2021 14:34:50 +0200 Subject: [PATCH] completions: add -o,--override to footclient --- completions/bash/footclient | 3 ++- completions/fish/footclient.fish | 1 + completions/zsh/_footclient | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/completions/bash/footclient b/completions/bash/footclient index 6e065a97..8e0aa017 100644 --- a/completions/bash/footclient +++ b/completions/bash/footclient @@ -13,6 +13,7 @@ _footclient() "--log-level" "--log-colorize" "--maximized" + "--override" "--server-socket" "--term" "--title" @@ -61,7 +62,7 @@ _footclient() COMPREPLY=( $(compgen -W "error warning info" -- ${cur}) ) elif [[ ${prev} == '--log-colorize' ]] ; then COMPREPLY=( $(compgen -W "never always auto" -- ${cur}) ) - elif [[ ${prev} =~ ^(--app-id|--help|--title|--version|--window-size-chars|--window-size-pixels|)$ ]] ; then + elif [[ ${prev} =~ ^(--app-id|--help|--override|--title|--version|--window-size-chars|--window-size-pixels|)$ ]] ; then : # don't autocomplete for these flags else # complete commands from $PATH diff --git a/completions/fish/footclient.fish b/completions/fish/footclient.fish index 826508ef..9b8caa84 100644 --- a/completions/fish/footclient.fish +++ b/completions/fish/footclient.fish @@ -11,6 +11,7 @@ complete -c footclient -x -s W -l window-size-chars complete -c footclient -F -s s -l server-socket -d "override the default path to the foot server socket ($XDG_RUNTIME_DIR/foot-$WAYLAND_DISPLAY.sock)" complete -c footclient -s H -l hold -d "remain open after child process exits" complete -c footclient -s N -l no-wait -d "detach the client process from the running terminal, exiting immediately" +complete -c footclient -x -s o -l override -d "configuration option to override, in form SECTION.KEY=VALUE" complete -c footclient -x -s d -l log-level -a "info warning error" -d "log-level (info)" complete -c footclient -x -s l -l log-colorize -a "always never auto" -d "enable or disable colorization of log output on stderr" complete -c footclient -s v -l version -d "show the version number and quit" diff --git a/completions/zsh/_footclient b/completions/zsh/_footclient index 411d4ec5..3889c488 100644 --- a/completions/zsh/_footclient +++ b/completions/zsh/_footclient @@ -14,6 +14,7 @@ _arguments \ '(-s --server-socket)'{-s,--server-socket}'[override the default path to the foot server socket ($XDG_RUNTIME_DIR/foot-$WAYLAND_DISPLAY.sock)]:server:_files' \ '(-H --hold)'{-H,--hold}'[remain open after child process exits]' \ '(-N --no-wait)'{-N,--no-wait}'[detach the client process from the running terminal, exiting immediately]' \ + '(-o --override)'{-o,--override}'[configuration option to override, in form SECTION.KEY=VALUE]:()' \ '(-d --log-level)'{-d,--log-level}'[log level (info)]:loglevel:(info warning error)' \ '(-l --log-colorize)'{-l,--log-colorize}'[enable or disable colorization of log output on stderr]:logcolor:(never always auto)' \ '(-v --version)'{-v,--version}'[show the version number and quit]' \