If the cursor is currently right after text like foo= when you press TAB, then I think the last word used for autocompletion will be sent in as =. In that case we could bail early out of placeholder completion rather than bothering to dump placeholders.
Actually we could bail out of placeholder completion early in any case where CUR ends with =. Or if it doesn't start with + or a letter.
If the cursor is currently right after text like
foo=
when you press TAB, then I think the last word used for autocompletion will be sent in as=
. In that case we could bail early out of placeholder completion rather than bothering to dump placeholders.Actually we could bail out of placeholder completion early in any case where CUR ends with
=
. Or if it doesn't start with+
or a letter.