You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #463 applied I can expand mail folders with mutt -f =nam<tab>, but mutt -f +nam<tab> eats the + upon expansion, producing mutt -f name, which doesn't work.
PR incoming.
The text was updated successfully, but these errors were encountered:
mgedmin
added a commit
to mgedmin/bash-completion
that referenced
this issue
Nov 11, 2020
I haven't fully understood how exactly this happens, but sometimes
(Ubuntu 18.04) '=foo' ends up as a single word in COMP_WORDS, despite
COMP_WORDBREAKS containing '='. At other times '=foo' is split into two
words, '=' and 'foo'.
If COMP_WORDS[$COMP_CWORD] had the '+' or '=' prefix, we need to make
sure COMPREPLY also includes it, or we'll lose it.
Closesscop#464, in a better way.
With #463 applied I can expand mail folders with
mutt -f =nam<tab>
, butmutt -f +nam<tab>
eats the+
upon expansion, producingmutt -f name
, which doesn't work.PR incoming.
The text was updated successfully, but these errors were encountered: