ide.vim


Ⅰ. 插件描述

Ⅱ. 基本信息

创建日期:  2016-06-09
使用用户:  0
Github星:  3
插件作者:  Piotr Bugała

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/run2cmd/ide.vim

Ⅳ. 文档说明

# ide.vim

__This project is discontinued. I have moved to my own dotfiles wich contain full setup for VIM and not only:
https://github.com/run2cmd/dotfiles__

Bring IDE experiance to VIM

VIM configuration to bring IDE experiance out of the box for VIM 7.4 and above.
Works with Vundle Plugin Manager only. For other plugin managers you need to tweak vimrc file

Requirements

Installation

For basic sourcing

let custom_config_file = '~/.vim/bundle/ide.vim/vimrc'
exe 'source' custom_config_file

Put below into your source vimrc for automatinc download

cd $HOME
let i_have_ide_vim=1
let ide_vim_readme=expand('.vim/bundle/ide.vim/README.md')
if !filereadable(ide_vim_readme)
  echo "Installing IDE VIM.."
  echo ""
  silent !mkdir -p .vim/bundle
  silent !git clone https://github.com/run2cmd/ide.vim .vim/bundle/ide.vim
  let i_have_ide_vim=0
endif
let custom_config_file = '~/.vim/bundle/ide.vim/vimrc'
exe 'source' custom_config_file

Author

Piotr Bugała <piotr.bugala@gmail.com>

添加新评论