haskellFold


Ⅰ. 插件描述

Vim plugin providing folding for haskell, displaying type signatures

Ⅱ. 基本信息

创建日期:  2011-01-31
使用用户:  85
Github星:  17
插件作者:  Vincent B

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# haskellFold

Provide a better folding for haskell file. The folded lines are transformed
to display the type signature (if any) of the function, providing a great
overview of your file content.

You can get a shorter version of the foldtext (only the first relevant line)
by setting g:haskellFold_ShortText = 1

Installation

Drop the file in ~/.vim/plugin or ~/vimfiles/plugin folder, or if you
use pathogen into the ~/.vim/bundle/vim-haskellFold or
~/vimfiles/bundle/vim-haskellFold

添加新评论