首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >无法在NeoVim中启动

无法在NeoVim中启动
EN

Stack Overflow用户
提问于 2016-05-04 18:07:42
回答 1查看 2.4K关注 0票数 2

我一直试图让自动完成在GoLang in NeoVim工作。在搜索时,我被带到了脱衣。我使用dein.vim作为NeoVim包管理器。我的.vimrc文件设置如下:

代码语言:javascript
复制
if &compatible
set nocompatible               " Be iMproved
endif

" Required:
set runtimepath^=/home/tyler/repos/github.com/Shougo/dein.vim

" Required:
call dein#begin(expand('/home/tyler'))

" Let dein manage dein
" Required:
call dein#add('Shougo/dein.vim')

" Add or remove your plugins here:
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
call dein#add('Shougo/deoplete.nvim')

" You can specify revision/branch/tag.
call dein#add('Shougo/vimshell', { 'rev': '3787e5' })

" Required:
call dein#end()

" Required:
filetype plugin indent on

" If you want to install not installed plugins on startup.
if dein#check_install()
    call dein#install()
endif

let g:deoplete#enable_at_startup = 1

我已经对各种github问题做了大量的搜索,但还没有任何运气。综上所述,问题是我似乎无法让deoplete NeoVim插件自动完成。也许我对这件事的运作方式有误解。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-05-05 01:21:55

@Anzel在这里给出了一个很好的答案。Python接口需要通过pip安装。例如,pip3 install neovim。为了澄清这个问题,我试图通过deoplete插件让新病毒使用autocomplete。这不起作用(即使指定了选项,也不推荐实时完成自动完成),因为没有安装所需的Python接口。安装python接口后,一个简单的

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/37034969

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档