fix(emacs/lean-company): enable auto-complete when prefix length >= 1
[skip ci]
This commit is contained in:
parent
1c5497e632
commit
1ea8b66a39
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ triggers a completion immediately."
|
|||
((and
|
||||
(company-lean--need-autocomplete)
|
||||
(or
|
||||
(> (length prefix) 3)
|
||||
(>= (length prefix) 1)
|
||||
(string-match "[_.]" prefix)))
|
||||
prefix))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue