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 "0.5.0"]])

Error

Start Vim

java.lang.IllegalStateException: Attempting to call unbound fn: #'vimclojure.nails/NamespaceOfFile

And NGServer

Warning: repls not declared dynamic and thus is not dynamically rebindable, but its name suggests otherwise. Please either indicate ^:dynamic repls or change the name.

Warning: print-pretty not declared dynamic and thus is not dynamically rebindable, but its name suggests otherwise. Please either indicate ^:dynamic print-pretty or change the name.

link|improve this question
feedback

2 Answers

Please use a newer release of VimClojure. The trouble stems from some changes in Clojure 1.3 regarding dynamic Vars.

link|improve this answer
I am using the VimClojure 2.3.1 (most recent at time of writing) and seeing the same error. I am using org.clojars.scott/lein-nailgun "1.1.0" for nailgun. – Raoul Feb 16 at 13:22
1  
@raoul I cannot guarantee for third party packages from clojars. Please try the nailgun server delivered with VimClojure clojars.org/vimclojure/server manually and see if this fixes things. If so, the error is not in VimClojure. If not, please open a ticket in the tracker on bitbucket. Thanks. – kotarak Feb 16 at 13:41
That worked a treat thanks :) Incidentally for anyone else using lein and vimclojure: the alias here: groups.google.com/group/vimclojure/msg/ebfba35627bec25f makes life easier. – Raoul Feb 16 at 14:01
feedback

Not really an answer, but Sam Aaron uses emacs. Personally, I find a combination of his live coding setup (https://github.com/overtone/live-coding-emacs) and evil (http://gitorious.org/evil) pretty pleasant for a vim head like me.

link|improve this answer
Can you share how you set up evil for this purpose? – Zameer Manji Apr 7 at 20:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.