Autocompletion for \sf does not work if there is more than one function - Mailing list pgsql-docs

From PG Doc comments form
Subject Autocompletion for \sf does not work if there is more than one function
Date
Msg-id 175772491451.851.7568162483004370199@wrigleys.postgresql.org
Whole thread Raw
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/17/app-psql.html
Description:

test=> \sf+ app_con<TAB><TAB>

test=> \sf+ app_config
ERROR:  more than one function named "app_config"

I expect to see arguments types: void or jsonb like:
test=> \sf app_con<TAB><TAB>
void jsonb

Because definition for those functions are:
 Schema |    Name    | Result data type |
>
--------+------------+------------------+------------------------------------------------>
 public | app_config | void             | config jsonb
>
 public | app_config | jsonb            | keys text[] DEF

Best regards.

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: ANALYZE being a read v write operation clarification
Next
From: Eugen Konkov
Date:
Subject: Re: Autocompletion for \sf does not work if there is more than one function