vim-salve


Ⅰ. 插件描述

salve.vim: static support for Leiningen and Boot

Ⅱ. 基本信息

创建日期:  2014-04-29
使用用户:  437
Github星:  168
插件作者:  Tim Pope

Ⅲ. 安装方法

使用Vundle管理器安装

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

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

使用NeoBundle管理器安装

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

使用VimPlug管理器安装

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

使用Pathogen管理器安装

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

Ⅳ. 文档说明

# salve.vim

Static Vim support for [Leiningen][], [Boot][], and the [Clojure CLI][].

Leiningen ran... [the ants] would get to him soon, despite the salve on
his boots.

-- from "Leiningen versus the Ants"

Features

  • :Console command to start a REPL or focus an existing instance if already
    running using [dispatch.vim][].
  • Autoconnect [fireplace.vim][] to the REPL, or autostart it with :Console.
  • and :Eresource.

  • Alternate between test and implementation with :A.
  • Use :make to invoke lein, boot, or clojure, complete with stacktrace
    parsing.
  • Default [dispatch.vim][]'s :Dispatch to running the associated test file.
  • 'path' is seeded with the classpath to enable certain static Vim and
    [fireplace.vim][] behaviors.

Installation

If you don't have a preferred installation method, I recommend
installing pathogen.vim, and
then simply copy and paste:

cd ~/.vim/bundle
git clone git://github.com/tpope/vim-salve.git
git clone git://github.com/tpope/vim-projectionist.git
git clone git://github.com/tpope/vim-dispatch.git
git clone git://github.com/tpope/vim-fireplace.git

Once help tags have been generated, you can view the manual with
:help salve.

FAQ

Why does it sometimes take a few extra seconds for Vim to startup?

Much of the functionality of salve.vim depends on knowing the classpath.
When possible, this is retrieved from a [fireplace.vim][] connection, but if
not, this means a call to lein classpath or boot show --fake-classpath.

Once retrieved, the classpath is cached until a project manifest file
changes: for Leiningen project.clj or ~/.lein/profiles.clj, for Boot
build.boot or ~/.boot/profile.boot, for the Clojure CLI deps.edn or
~/.clojure/deps.edn.

License

Copyright © Tim Pope. Distributed under the same terms as Vim itself.
See :help license.

添加新评论