vim-clippy


Ⅰ. 插件描述

check rust code in vim using cargo clippy

Ⅱ. 基本信息

创建日期:  2017-02-10
使用用户:  4
Github星:  5
插件作者:  wagnerf42

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# vim-clippy
This is a vim plugin for cargo the rust package manager

Features

  • Syntastic checker: while this part of rust.vim can be used to syntax check one file, the syntax checker of vim-clippy will provide whole project based syntax checking using cargo clippy. This plugin is derived from cargo.vim

Install

Install syntastic, follow the instructions there.
Install cargo clippy easily using cargo install clippy.
Of course, it requires rust-nightly.
Then install this plugin.

You can select amongst different rust checkers using:
let g:syntastic_rust_checkers = ['clippy']

License

vim-clippy is primarily distributed under the terms of both the MIT license
and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

添加新评论