summaryrefslogtreecommitdiff
path: root/test/completion
AgeCommit message (Collapse)Author
2020-05-31Add test for LSP autoimportJerko Steiner
2020-04-17Merge pull request #2823 from jeremija/do-not-save-on-autoimportw0rp
Do not save after ALERename and ALEOrganizeImports
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-11-08Fix typoDonnie West
2019-11-08Allow the user to set their own completion valuesDonnie West
2019-10-22Merge branch 'master' into do-not-save-on-autoimportJerko Steiner
2019-10-18Merge pull request #2845 from DonnieWest/fixItemDetailsOnEmptySourcew0rp
Fix tsserver not returning details for items with empty source
2019-10-17Fix tsserver not returning details for items with empty sourceDonnie West
2019-10-17Allow code actions to work on callback based sourcesDonnie West
2019-10-09Do not save for ALERename and ALEOrganizeImportsJerko Steiner
2019-09-20Show description of autoimport action for tsserverJerko Steiner
2019-09-12Add ALERename (tsserver & LSP), ALEOrganizeImports (tsserver) and auto ↵Jerko Steiner
import support (tsserver) (#2709) This commit adds support for renaming symbols in tsserver and with LSP tools, and for organising imports with tsserver. Completion results for symbols that can be imported are now suggested if enabled for tsserver completion done via ALE.
2019-08-17Add asyncomplete.vim Support (#2627)Donnie West
2019-06-19Add & fix tests for added funcsdelphinus
2019-05-30Fix #2544 - Completion positions are off by onew0rp
2019-05-28Fix #2535 - Automatically emit <C-x><C-o> less to prevent <C-o> issuesw0rp
2019-05-17Close #2285 - Add a function for use with omnifuncw0rp
2019-05-12#2492 - Try to fix a deoplete bug againw0rp
2019-05-11Support b:ale_completion_enabled for disabling it for some buffersw0rp
2019-05-09#2481 - Use text to insert from insertTextw0rp
2019-04-23Close #1753 - Implement minimum viable integration with Deopletew0rp
2019-03-10#2341 - Handle completion messages with textEdit objectsw0rp
2019-03-08Fix #2326 - ALEComplete no longer replaces completeoptw0rp
2019-02-15Fix #2295 - Respond to initialize with an initialized messagew0rp
2019-02-13#2132 Use an on-init callback for all LSP logicw0rp
2019-02-08Fix #2257 - Fix an off by 1 which broke completion for some serversw0rp
2019-01-21Update testsAndrey Popp
2019-01-08Optimize ale#completion#Filter when prefix is ""Jerko Steiner
2019-01-08Manually trigger autocomplete even when prefix is ""Jerko Steiner
2018-09-17#1794 - Handle LSP documentation content as a Dictionaryw0rp
2018-09-12fix non-. prefix triggers overfiltering resultsNick Gavalas
2018-09-11fix tsserver className parsingNick Gavalas
2018-09-07#1888 Support names with minuses in Clojure and Lispw0rp
2018-08-24Use one LSP connection per projectw0rp
2018-07-26#1700 - Try using a 0ms timer showing the completion menuw0rp
2018-07-25#1700 - Temporarily change completion options when the feedkeys() keybind is ↵w0rp
fired
2018-07-23#1751 Handle LSP completion results without the 'kind' attributew0rp
2018-07-22Make the completion events test fail lessw0rp
2018-07-22#1692 - Only send completion requests to the first server supporting themw0rp
2018-07-22Check LSP capabilities before using themw0rp
2018-07-17#1700 - Don't send <C-x><C-o> for completion in Insert modew0rp
2018-07-16#1700 - Stop handling completion results if you leave insert modew0rp
2018-07-06Fix the broken testsw0rp
2018-07-04Close #1690 - Respect the preview setting for completeoptw0rp
2018-06-15Lazy-load LSP linters, and check b:changedtick before notifying about changesw0rp
2018-06-12Add a test for handling missing detail keys for LSP completionw0rp
2018-05-28Close #1553 - Support some tsserver completion for stringsw0rp
2018-05-28Fix #1568 - Filter LSP completion results with the prefixesw0rp
2018-05-03Add g:ale_completion_excluded_words for completion filteringw0rp
2018-04-22Close #1162 - Implement completion support with LSP serversw0rp