我跟着guide for vim with python,这意味着:
1. I added all plugins to .vimrc;
2. Installed plugins with vim-command :PluginInstall.
但是当我打开像 $ vim / path / to / project 这样的项目或某个文件时,我什么也得不到:没有插件或 .vimrc 的任何设置。
你能帮助我解决我的错误以及如何使用我的插件运行vim吗?谢谢!
答案 0 :(得分:0)
在运行之前,您至少需要安装一个像Plug这样的插件管理器:
public class ProductRepository
{
private readonly string _connectionString;
public MyRepository(string connectionString)
{
_connectionString = connectionString;
}
public List<Product> GetProducts()
{
using (var connection = new OleDbConnection(_connectionString))
using (var command = new OleDbCommand("command text", connection))
{
connection.Open();
//execute command and return results here
}
}
public void AddProduct(Product product)
{
using (var connection = new OleDbConnection(_connectionString))
using (var command = new OleDbCommand("command text", connection))
{
connection.Open();
//execute command here
}
}
}
因此,您必须按照插件页面上的说明操作。
答案 1 :(得分:0)
:PluginInstall
命令来自vim插件管理器“Vundle”。
没有插件管理器,克隆/复制插件文件并更新它们真的很难。 Vundle(Vim-bundle)做的是,它从〜/ .vimrc文件中读取你的插件需求,并为你管理它们。
从Vundle开始,
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
将Vundle克隆到.vim目录中。
将您的插件要求添加到.vimrc(关注Vundle official repository quick start section中的.vimrc模板)
在vim中,输入:PluginInstall
并按Enter键。冒号标记启动vim命令。
安装完成后,重新启动vim。