chzyer / readline

Readline is a pure go(golang) implementation for GNU-Readline kind library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Case-Insensitive auto completion

dzervas opened this issue · comments

Hello, is there an option to make auto completion case-insensitive?
Like he<tab> -> Help

If not, can I implement it without copy-pasting the whole completer (just to change HasPrefix(...) to HasPrefix(ToLower(...))