coc-jedi


Ⅰ. 插件描述

Deprecated, use https://github.com/neoclide/coc-python instead.

Ⅱ. 基本信息

创建日期:  2018-12-29
使用用户:  1
Github星:  10
插件作者:  neoclide

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# coc-jedi

Jedi integration for coc.nvim.

This plugin start a python server which attached to neovim/vim, and make the
nodejs part communicate with python server by use notification, it would never
block your vim.

Deprecated, use coc-python
instead.

Install

Use plugin manager, like vim-plug by add:

Plug 'neoclide/coc.nvim', {'do': { -> coc#util#install()}}
Plug 'neoclide/coc-jedi', {'do': 'yarn install'}

to your init.vim and run:

:PlugInstall

Restart your vim.

Note: no need to use lazyload for this plugin.

Note: this plugin contains vim part, it can't be installed by :CocInstall
command.

Features

  • [x] Completion
  • [ ] Signature help, support current active param.
  • [ ] Hover for documentation, show full path & doc string.
  • [ ] Goto definition.
  • [ ] Goto references.
  • [ ] Document symbols.

Configuration

TODO

F.A.Q

TODO

License

MIT

添加新评论