diff options
| author | dana <dana@dana.is> | 2026-06-29 19:50:58 -0500 |
|---|---|---|
| committer | dana <dana@dana.is> | 2026-06-29 19:53:47 -0500 |
| commit | d1020e63e13f85c7c0f57d43143c28cf759c20c9 (patch) | |
| tree | 0294307cec258fa78c16c28fd95078d5eb800080 /Completion/Unix/Command/_postgresql | |
| parent | unposted: _numbers: fix compadd -q spec (diff) | |
| download | zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar.gz zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar.bz2 zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar.lz zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar.xz zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.tar.zst zsh-d1020e63e13f85c7c0f57d43143c28cf759c20c9.zip | |
54863 + others: completion: compadd -q -> -r
-q was not appropriate because a parameter name with no assignment makes
no sense in this context. use -r instead
also address some previous cases like this that i was responsible for
Diffstat (limited to 'Completion/Unix/Command/_postgresql')
| -rw-r--r-- | Completion/Unix/Command/_postgresql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_postgresql b/Completion/Unix/Command/_postgresql index 595eb1cb4..aff245578 100644 --- a/Completion/Unix/Command/_postgresql +++ b/Completion/Unix/Command/_postgresql @@ -200,7 +200,7 @@ __pgsql_cfg_params_values() { _message -e values 'PostgreSQL run-time configuration-parameter value' else compset -S '=*' - __pgsql_cfg_params "$@" -qS= + __pgsql_cfg_params "$@" -r= -S= fi } @@ -332,7 +332,7 @@ __pgsql_cfg_variables_values() { _message -e values 'PostgreSQL special-variable value' else compset -S '=*' - __pgsql_variables "$@" -qS= + __pgsql_variables "$@" -r= -S= fi } |
