作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为 vim-plug 制作一个插件.目前我不确定如何加载本地目录。我已经在我的根目录中运行了:
mkdir vim-test
cd vim-test
git init
mkdir syntax
然后我进入我的 ~/.config/nvim/init.vim
文件,我有:
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-easy-align'
Plug 'scrooloose/nerdtree'
Plug 'cespare/vim-toml'
Plug '~/vim-test'
" Initialize plugin system
call plug#end()
目前,所有其他插件似乎都已加载,但据我所知,当我执行 :PlugInstall
时,vim-test
没有显示为一个包,它也不安装。我应该怎么做才能让 vim-test
出现?
最佳答案
正如 Nishant 指出的那样:
I think PlugInstall is for Github installation.
我可以使用 :PlugStatus
检查状态,而 vim-test
实际上加载状态为 OK
。它只是没有出现在 :PlugInstall
中。
关于vim - 如何让 vim-plug 识别本地项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48878914/
我是一名优秀的程序员,十分优秀!