textobj-line


Ⅰ. 插件描述

Vim plugin: Text objects for the current line

Ⅱ. 基本信息

创建日期:  2012-01-12
使用用户:  523
Github星:  119
插件作者:  Kana Natsuno

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

textobj-line is a Vim plugin to provide text objects to select a portion ofthe current line.  Sometimes you want to select a portion of the current linelike "^vg_" or "0v$h".  This plugin provides the text objects for such ranges.For example, if the current line equals to "__foo_bar_baz__" (where "_"represents a whitespace character), you can select "foo_bar_baz" (withoutleading and trailing spaces) by |<Plug>(textobj-line-i)| and "__foo_bar_baz__"(with leading and trailing spaces) by |<Plug>(textobj-line-a)|.Requirements:- Vim 7.2 or later- |textobj-user| 0.3.8 or later (vimscript#2100)Latest version:http://github.com/kana/vim-textobj-lineDocument in HTML format:http://kana.github.com/config/vim/textobj-line.html

添加新评论