Questions tagged [vimclojure]

Vim plugin for the Clojure programming language which adds syntax highlighting, indenting and code completion.

VimClojure is a filetype plugin which adds syntax highlighting, indenting and completion for Clojure to your Vim. It also contains an optional SLIME-like environment.

16 questions
6
votes
1 answer

How to use vimclojure and SLIMV together?

Both addons have good sides, SLIMV has better REPL(faster than vimclojure REPL), but vimclojure's indentation and syntax coloring is better(also, vimclojure's syntax coloring is working in REPL too). And vimclojure's indentation is better. For…
sinan
  • 6,809
  • 6
  • 38
  • 67
5
votes
1 answer

How do I remove a function from the lein repl?

During a lein REPL session, I may define a number of functions. However, sometimes I would want the session to 'forget' them - for example when I execute (run-all-tests), this highlights failures from tests that I no longer need. Is there a way to…
Rich Ashworth
  • 1,995
  • 4
  • 19
  • 29
4
votes
5 answers

Why isn't VimClojure setting filetype to "clojure"

I have setup vundle to handle my packages in MacVim. It correctly sets the filetype for all my other files, e.g. ruby, perl, etc. However, it is not setting the filetype when I open a .clj file. When I run :set filetype? it returns empty. So, vim…
Matthew Boston
  • 1,320
  • 10
  • 24
4
votes
2 answers

Using SLIMV to code Lisp, how do I insert a single " without disabling paredit.vim?

I need to write the following line of code: ((eq item #\") (do-this...)) But everytime I type ", I get "". I've read the paredit.vim doc file but it's not clear how to insert a single pair character (be it ", (, or [), and whether doing it breaks…
bgibson
  • 17,379
  • 8
  • 29
  • 45
3
votes
1 answer

New SLIMV 0.8.4 install, paren matching works, indentation doesn't

I'm reinstalling everything after a hdd failure on my netbook (fresh install of Ubuntu Netbook Edition 10.04), and am trying to get the excellent SLIMV working again. It was working fine on the previous installation, but with this one, parenthesis…
bgibson
  • 17,379
  • 8
  • 29
  • 45
3
votes
3 answers

tutorial for installing VimClojure

Is there any tutorial/screencast available online for free to figure out how to use/install vimClojure.
user855
  • 19,048
  • 38
  • 98
  • 162
2
votes
3 answers

How to Use Overtone with Vimclojure?

I use SuperCollider with Overtone,and VimClojure. But,it don't work well...What is Problem? "lein repl" works. user -> (use 'overtone.live) project.clj (defproject overtone-tutorial "1.0.0-SNAPSHOT" :dependencies [[overtone…
esehara
  • 191
  • 7
2
votes
1 answer

Some functions don't show up when running a REPL via nailgun server

I am trying to use appengine-magic (0.3.1) setup with VimClojure (2.2.0) and Clojure 1.2.0. Things look right when used via vanilla REPL (lein repl). user=> (require '[clojure.contrib.ns-utils :as nsu]) nil user=> (require '[appengine-magic.core :as…
Alex B
  • 82,554
  • 44
  • 203
  • 280
2
votes
2 answers

Understanding VimClojure new installation startup errors

I am attempting to get vimclojure working for the first time. I am fairly new to vim plugins. I'm having some problems (error messages below) and am looking for some hints at the least. Not much idea where to start. I am trying to following the…
noahlz
  • 10,202
  • 7
  • 56
  • 75
1
vote
0 answers

Can't get VimClojure to talk to NGServer

I'm trying to setup Vim as a Clojure programming environment, using these instructions: http://naleid.com/blog/2011/12/19/getting-a-clojure-repl-in-vim-with-vimclojure-nailgun-and-leiningen/ I'm able to start ng-server from the root of a Leiningen…
Bob
  • 3,283
  • 3
  • 20
  • 14
1
vote
3 answers

Vim and Clojure, can I use Slimv or VimClojure with ritz or another REPL?

I can successfully configure both Slimv and VimClojure but I wonder if I can set any of those to work with any swank server (ritz for example). Thanks!
ssedano
  • 8,322
  • 9
  • 60
  • 98
1
vote
1 answer

Why is nailgun server throwing 'Could not determine the Namespace of the file' error?

I'm trying to get vimclojure going, and would appreciate any help as to what I've done wrong. Here is an error when I try to read project.clj in one of my lein projects: ; Use \p to close this buffer! Could not determine the Namespace of the…
octopusgrabbus
  • 10,555
  • 15
  • 68
  • 131
0
votes
1 answer

Vimclojure bracket completion is driving me insane

Hi Folks I'm using vimclojure for all my clojure programming needs. Vimclojure automatically completes brackets for me and does not let me delete the ones I dont't want. Here is a quick example: The code I worte is the following: (defn insert-foo…
Kungi
  • 1,477
  • 1
  • 18
  • 34
0
votes
1 answer

How to change default setting of vim-clojure-static plugin?

I'm new in clojure programming. I'm using vim editor. I have installed vim-clojure-static plugin to write better code. But It's not working as I expected. I want two spaces indentation for every special keyword. For example, Here is core.clj…
james
  • 27
  • 7
0
votes
1 answer

disable window reposition in VimClojure?

I'm using VimClojure plugin. Sometime when I use o to insert a new line, the plugin will reposition the window and move the current line to the bottom of window. It's very annoying especially when I've typed zz to center the current line. I've read…
Javran
  • 3,394
  • 2
  • 23
  • 40
1
2