-
Notifications
You must be signed in to change notification settings - Fork 23
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
Support for native vim auto-complete and mappings (eg ^X - ^T) #7
Comments
Hmm. Actually, one of the original motivation for me to create this plugin is that I don't like the menu-like synonym choosing interface, browsing dozens or even hundreds of synonyms one by one could be a very painful experience. I intended to design it to be similar to Vim's spell check function rather than auto-completion functionality, so that all options are displayed nice and clean. And you can choose the synonym with a simple number. But if you want, I guess sending the query result back to Vim's auto-completion is doable. I'll need some time to read-up on how, though. There is one issue I can think of. If user choose to use this plugin's query result as a source for Vim's auto-completion(after it's made possible). Each auto-complete invoking key-stroke will invoke online query function, which can take seconds to complete. That might pose significant lagging. With async feature provided by NeoVim or Vim 8+, it is possible to reduce the lag time. But that is still yet to be seen. |
Insert-mode auto-completion is added through |
Great! I'll try it! |
By the way. Is it impossible to bind |
When I try to use
When I use it for Russian word it is just:
When I use |
The issue is likely caused by:
In latest commits(1b323a6), I have systematically went through all the encoding details within modules. It should work fine at this point(I have already tested it on OS X and Linux, both Vim 7.3 and Vim 7.4). Your
for Russian query is possibly caused by not setting I don't know if overriding Hope you find the fixed plugin better suited your working style. :D |
There is native vim support for thesaurus:
It would be great for that plugin to replace that functionality. Because sometimes it much better for speed and convenience to have autocomplete list.
The text was updated successfully, but these errors were encountered: