-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression with commit 'b88179d' #17
Comments
previously the word list would only get updated when (re-)entering or saving a buffer so words that were typed recently wouldn't show up in completions now words are refreshed after ther cursor paused for updatetime (4000ms default) amount
I managed to fix it locally by faking a BufWinEnter event on the buffer source like so:
|
It seems that the event BufWinEnter is not generated when you start vim with a file. A proper fix for the plugin would be to process not only BufWinEnter, but also VimEnter. I have found a workaround for this issue by adding this to my vimrc (I am not sure if this is the right approach):
|
The latest commit (
b88179d
) introduced a regression.To reproduce, create a file with the following contents:
Then on the last line type
e
. The wordhello
is not proposed.However if you do the same at commit
b8f00ea
it works as expected.The text was updated successfully, but these errors were encountered: