This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Not respecting min length #75
Open
Description
Package autocomplete-plus
has a default minimum word length of 3 characters, which is the one I am using:
However, this package starts autocompleting from the 1st character, which causes disturbing behaviors.
For example, if you write <a
in an XML file, and you have a snippet called attrs
(as is my case), you get this:
And then press TAB and you get the filled snippet:
But what I expected TAB to do is to expand the builtin <a
snippet. I have to write <a
, press ESC and then TAB to get that:
So maybe here we have 2 bugs:
- No
<a
snippet completion displayed. - Not respecting configured minimum length.