summaryrefslogtreecommitdiff
path: root/test/python
AgeCommit message (Collapse)Author
2020-01-01Add TypeScript autoimport support for deoplete (#2779)Jerko Steiner
* Add autoimport support for deoplete * Fix test_deoplete_source.py * Use callback instead of is_async for deoplete Shuogo, the author of Deoplete, does not recommend using the `is_async` option: > I think is_async is not recommended. It is not so useful and broken. > You should use callback system instead. Link: https://github.com/Shougo/deoplete.nvim/issues/1006#issuecomment-526797857 Incidentally, the same thread mentiones an issue started by w0rp: https://github.com/Shougo/deoplete.nvim/issues/976 The deoplete docs also say is_async is deprecated: > is_async (Bool) > If the gather is asynchronous, the source must set > it to "True". A typical strategy for an asynchronous > gather_candidates method to use this flag is to > set is_async flag to True while results are being > produced in the background (optionally, returning them > as they become ready). Once background processing > has completed, is_async flag should be set to False > indicating that this is the last portion of the > candidates. > > Note: The feature is deprecated and not recommended. > You should use callback system by > |deoplete#auto_complete()| instead. Link: https://github.com/Shougo/deoplete.nvim/blob/master/doc/deoplete.txt Co-authored-by: w0rp <w0rp@users.noreply.github.com>
2019-07-14Add Deoplete's input_patterns for cppdelphinus
2019-06-25Use input_patterns & add comments for updating itdelphinus
2019-06-19Add & fix tests for added funcsdelphinus
2019-06-15Raise deoplete source rank to 1000BlahGeek
2019-05-21Revert "Fix #2492 - Remove all Deoplete support for now"w0rp
This reverts commit 975cc7af8fbabe234a220c84e56b7ff719d8d959.
2019-05-16Fix #2492 - Remove all Deoplete support for noww0rp
2019-05-12#2492 - Try to fix a deoplete bug againw0rp
2019-05-11#2492 - Try to fix a bug with ALE's deoplete sourcew0rp
2019-04-23Close #1753 - Implement minimum viable integration with Deopletew0rp