2013-03-12 19:37:37 +00:00
|
|
|
# fireplace.vim
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
There's a REPL in fireplace, but you probably wouldn't have noticed if I hadn't
|
|
|
|
told you. Such is the way with fireplace.vim. By the way, this plugin is for
|
2012-12-04 06:06:22 +00:00
|
|
|
Clojure.
|
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
Fireplace.vim used to be called foreplay.vim, but it was renamed so Java
|
|
|
|
developers wouldn't have to speak in hushed tones.
|
|
|
|
|
2012-12-04 06:06:22 +00:00
|
|
|
## Installation
|
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
Fireplace.vim doesn't provide indenting or syntax highlighting, so you'll want
|
2012-12-14 04:01:59 +00:00
|
|
|
[a set of Clojure runtime files](https://github.com/guns/vim-clojure-static).
|
2013-01-07 01:19:16 +00:00
|
|
|
You might also want [classpath.vim][] to run code when no REPL is available.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
If you don't have a preferred installation method, I recommend
|
|
|
|
installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and
|
|
|
|
then simply copy and paste:
|
|
|
|
|
|
|
|
cd ~/.vim/bundle
|
2013-03-12 19:37:37 +00:00
|
|
|
git clone git://github.com/tpope/vim-fireplace.git
|
2013-01-07 01:19:16 +00:00
|
|
|
git clone git://github.com/tpope/vim-classpath.git
|
2012-12-14 04:01:59 +00:00
|
|
|
git clone git://github.com/guns/vim-clojure-static.git
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
Once help tags have been generated, you can view the manual with
|
2013-03-12 19:37:37 +00:00
|
|
|
`:help fireplace`.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2012-12-15 21:28:24 +00:00
|
|
|
This list isn't exhaustive; see the `:help` for details.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
### Transparent setup
|
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
Fireplace.vim talks to nREPL. With Leiningen, it connects automatically based
|
2014-04-03 23:46:29 +00:00
|
|
|
on `.nrepl-port`, otherwise it's just a `:Connect` away. You can connect to
|
|
|
|
multiple instances of nREPL for different projects, and it will use the right
|
|
|
|
one automatically. ClojureScript support is just as seamless with
|
2014-01-19 22:56:32 +00:00
|
|
|
[Piggieback][].
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-01-09 05:41:46 +00:00
|
|
|
The only external dependency is that you have either a Vim with Python support
|
2014-01-07 03:41:03 +00:00
|
|
|
compiled in, or `python` in your path.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-01-07 01:19:16 +00:00
|
|
|
Oh, and if you don't have an nREPL connection, installing [classpath.vim][]
|
2014-04-03 23:36:10 +00:00
|
|
|
lets it fall back to using `java clojure.main` for some of the basics, using a
|
|
|
|
class path based on your Leiningen or Maven config. It's a bit slow, but a
|
|
|
|
two-second delay is vastly preferable to being forced out of my flow for a
|
|
|
|
single command, in my book.
|
2013-01-07 01:19:16 +00:00
|
|
|
|
2014-01-19 22:56:32 +00:00
|
|
|
[Piggieback]: https://github.com/cemerick/piggieback
|
2013-01-07 01:19:16 +00:00
|
|
|
[classpath.vim]: https://github.com/tpope/vim-classpath
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
### Not quite a REPL
|
|
|
|
|
|
|
|
You know that one plugin that provides a REPL in a split window and works
|
|
|
|
absolutely flawlessly, never breaking just because you did something innocuous
|
|
|
|
like backspace through part of the prompt? No? Such a shame, you really
|
|
|
|
would have liked it.
|
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
I've taken a different approach in fireplace.vim. `cq` (Think "Clojure
|
2012-12-04 06:06:22 +00:00
|
|
|
Quasi-REPL") is the prefix for a set of commands that bring up a *command-line
|
|
|
|
window* — the same thing you get when you hit `q:` — but set up for Clojure
|
|
|
|
code.
|
|
|
|
|
|
|
|
`cqq` prepopulates the command-line window with the expression under the
|
|
|
|
cursor. `cqc` gives you a blank line in insert mode.
|
|
|
|
|
|
|
|
### Evaluating from the buffer
|
|
|
|
|
|
|
|
Standard stuff here. `:Eval` evaluates a range (`:%Eval` gets the whole
|
|
|
|
file), `:Require` requires a namespace with `:reload` (`:Require!` does
|
2014-04-04 03:54:20 +00:00
|
|
|
`:reload-all`), either the current buffer or a given argument. `:RunTests`
|
|
|
|
kicks off `(clojure.test/run-tests)` and loads the results into the quickfix
|
|
|
|
list.
|
|
|
|
|
|
|
|
There's a `cp` operator that evaluates a given motion (`cpp` for the
|
|
|
|
outermost form under the cursor). `cm` and `c1m` are similar, but they only
|
|
|
|
run `clojure.walk/macroexpand-all` and `macroexpand-1` instead of evaluating
|
|
|
|
the form entirely.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-01-08 03:41:04 +00:00
|
|
|
Any failed evaluation loads the stack trace into the location list, which
|
|
|
|
can be easily accessed with `:lopen`.
|
|
|
|
|
2012-12-04 06:06:22 +00:00
|
|
|
### Navigating and Comprehending
|
|
|
|
|
2014-04-04 03:50:42 +00:00
|
|
|
I was brand new to Clojure when I started this plugin, so stuff that helped me
|
|
|
|
understand code was a top priority.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-02-04 05:33:01 +00:00
|
|
|
* `:Source`, `:Doc`, `:FindDoc`, and `:Apropos`, which map to the underlying
|
2012-12-04 06:06:22 +00:00
|
|
|
`clojure.repl` macro (with tab complete, of course).
|
|
|
|
|
|
|
|
* `K` is mapped to look up the symbol under the cursor with `doc`.
|
|
|
|
|
|
|
|
* `[d` is mapped to look up the symbol under the cursor with `source`.
|
|
|
|
|
|
|
|
* `[<C-D>` jumps to the definition of a symbol (even if it's inside a jar
|
|
|
|
file).
|
|
|
|
|
|
|
|
* `gf`, everybody's favorite "go to file" command, works on namespaces.
|
|
|
|
|
|
|
|
Where possible, I favor enhancing built-ins over inventing a bunch of
|
|
|
|
`<Leader>` maps.
|
|
|
|
|
|
|
|
### Omnicomplete
|
|
|
|
|
|
|
|
Because why not? It works in the quasi-REPL too.
|
|
|
|
|
2013-04-17 14:56:40 +00:00
|
|
|
## FAQ
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
> Why does it take so long for Vim to startup?
|
|
|
|
|
2013-03-12 19:37:58 +00:00
|
|
|
See the [classpath.vim FAQ][]. You can uninstall classpath.vim if you only
|
|
|
|
care about nREPL support.
|
2012-12-04 06:06:22 +00:00
|
|
|
|
2013-03-12 19:37:58 +00:00
|
|
|
[classpath.vim FAQ]: https://github.com/tpope/vim-classpath#FAQ
|
2012-12-04 06:06:22 +00:00
|
|
|
|
|
|
|
## Self-Promotion
|
|
|
|
|
2013-03-12 19:37:37 +00:00
|
|
|
Like fireplace.vim? Follow the repository on
|
|
|
|
[GitHub](https://github.com/tpope/vim-fireplace). And if
|
2012-12-04 06:06:22 +00:00
|
|
|
you're feeling especially charitable, follow [tpope](http://tpo.pe/) on
|
|
|
|
[Twitter](http://twitter.com/tpope) and
|
|
|
|
[GitHub](https://github.com/tpope).
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
Copyright © Tim Pope. Distributed under the same terms as Vim itself.
|
|
|
|
See `:help license`.
|