paredit.vim


Ⅰ. 插件描述

Paredit Mode: Structured Editing of Lisp S-expressions

Ⅱ. 基本信息

创建日期:  2012-04-01
使用用户:  519
Github星:  152
插件作者:  Tamas Kovacs

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

--------------------------------------------------------------------------------

paredit.vim

Paredit Mode: Structured Editing of Lisp S-expressions

Vim script

created by
Tamas Kovacs


Description

Paredit performs structured editing of Lisp S-expressions in Vim. Paredit.vim is similar to paredit.el for Emacs. Paredit Mode tries to maintain the balanced state of matched characters (parenthesis marks, square and curly braces, double quotes). Matched characters are inserted and removed in pairs, also when working with a block of text (well, mostly). Paredit also implements many paredit.el s-expression handling functions, like Split/Join/Wrap/Splice. Slurpage and Barfage known from Emacs is also possible but in a different fashion: you don't move the list element in or out of the list, rather you move the opening or closing parenthesis over the element or sub-list.

Paredit.vim is also part of the Slimv plugin (http://www.vim.org/scripts/script.php?script_id=2531). Slimv is a SWANK client for Vim, similarly to SLIME for Emacs. Paredit.vim is extracted from Slimv for users who want to use a different SWANK client or don't need a SWANK client at all. In case you need structured editing together with the SWANK functionality then please install Slimv instead, you don't need to additionally install Paredit.

For more information see the included documentation.


Installation details

The plugin is installed the usual way: extract the zip archive into your vimfiles or runtime directory.
Please note that Paredit version numbers follow the Slimv versioning because paredit.vim is also part of Slimv.

See the included documentation for more complete installation and customization instructions.

vim:et:wrap:

添加新评论