coc-tabnine


Ⅰ. 插件描述

Tabnine integration of coc.nvim

Ⅱ. 基本信息

创建日期:  2019-06-27
使用用户:  1
Github星:  122
插件作者:  neoclide

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'neoclide/coc-tabnine'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'neoclide/coc-tabnine'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'neoclide/coc-tabnine'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/neoclide/coc-tabnine

Ⅳ. 文档说明

# coc-tabnine

Fork of tabnine-vscode

This is the coc.nvim client for TabNine, the all-language autocompleter.

  • Indexes your whole project, reading your .gitignore to determine which files to index.
  • Type long variable names in just a few keystrokes using the mnemonic completion engine.
  • Zero configuration. TabNine works out of the box.
  • Highly responsive: typically produces a list of suggestions in less than 10 milliseconds.

Install

In your vim/neovim, run command:

:CocInstall coc-tabnine

Commands

Run :CocCommand to open commands list.

  • tabnine.openConfig: open config file of TabNine.

_Note_: to make coc.nvim works better with TabNine, add "ignore_all_lsp": true to config file of TabNine.

Configuration

Use command :CocConfig to open user configuration file of coc.nvim.

OptionDescriptionDefault value
tabnine.shortcutShortcut for TabNine source."TN"
tabnine.triggersTrigger characters of TabNine source.[]
tabnine.priorityPriority of TabNine source.100
tabnine.binary_pathUse binary at specific path.""
tabnine.disable_filetypesDisable TabNine for configured filetypes.[]
tabnine.disable_file_regexDisable TabNine when the file path contains a match of any of the provided regexes. For example, add "[.]js\$" to disable TabNine in JavaScript files.[]
tabnine.disable_line_regexDisable TabNine when the current line contains a match of any of the provided regexes. For example, add "require" to disable TabNine when the current line contains the word require.[]

Magic Strings

Configure TabNine itself by inputting a magic string like TabNine::config or TabNine::restart in any buffer and trigger autocomplete. A full list of available magic strings is available here: https://tabnine.com/faq/#magic_strings.

License

MIT

添加新评论