deoplete-tabnine icon indicating copy to clipboard operation
deoplete-tabnine copied to clipboard

Deoplete source for TabNine

Results 6 deoplete-tabnine issues
Sort by recently updated
recently updated
newest added

Fix a problem: If os is Darwin and x86_64-apple-darwin binary is already installed, aarch64-apple-darwin binary cannot be installed.

When I use nvim to edit any file, the deoplete-tabnine will continue restarting the TabNine and producing error message, which is very annoying. The version of TabNine is: ``` TabNine...

Using `TabNine::sem` with `pyls`, suggestions from language server appear only after a couple of tries, as illustrated in the attached gif. I even tried to force a higher timeout in...

Here's my config (excerpt from `init.vim`): ``` call deoplete#custom#var('tabnine', { \ 'line_limit': 500, \ 'max_num_results': 6, \ }) ``` Yet, the result is clearly > 6: ![output](https://user-images.githubusercontent.com/5497761/81758888-c43faa00-94cb-11ea-8b02-853f72b3e129.gif)

`self.rank = 1000` is listed in the examples: ``` class Source(Base): def __init__(self, vim): super().__init__(vim) self.name = 'async' self.mark = '[async]' self.rank = 1000 self._count = 0 ``` That is...