L9


Ⅰ. 插件描述

Vim-script library

Ⅱ. 基本信息

创建日期:  2010-09-24
使用用户:  3550
Github星:  74
插件作者:  Takeshi NISHIDA

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

Repository:
  https://bitbucket.org/ns9tks/vim-l9/

Issues:
  http://bitbucket.org/ns9tks/vim-l9/issues/

Download latest(development) version
  https://bitbucket.org/ns9tks/vim-l9/get/tip.zip

==============================================================================
INTRODUCTION                                                 l9-introduction

l9 is a Vim-script library, which provides some utility functions and commands
for programming in Vim.

==============================================================================
INSTALLATION                                                l9-installation

Put all files into your runtime directory. If you have the zip file, extract
it to your runtime directory.

You should place the files as follows:

        <your runtime directory>/plugin/l9.vim

        <your runtime directory>/doc/l9.txt
        ...
<
If you are disgusted to make your runtime directory confused with a lot of
plugins, put each of the plugins into a directory individually and just add
the directory path to 'runtimepath'. It's easy to uninstall plugins.

Then update your help tags files to enable help for this plugin. See
|add-local-help| for details.

==============================================================================
USAGE                                                               l9-usage

See source code.

==============================================================================

添加新评论