On Thu, Feb 20, 2020 at 02:19:50PM -0500, Chet Ramey wrote:
On 2/20/20 2:00 PM, John Darrington wrote:
> I have a custom completer which provides a largish number of possible
> strings such as:
>
> "Arrays"
> "Array Instances"
> "Array Literals"
> "Array Deletion"
> "Binary"
> "Loops"
> ...
>
> When completing single words everything is fine.
Are you doing this with bash or some other program that uses readline?
My guess is the latter.
Yes - the latter.
A program of my own creation, which uses a custom completer registered
with
rl_completion_entry_function = my_function
J'