Hmm. I just spent some time writing about what I got stuck on and my solutions and suggestions but Google lost it all when I clicked submit. Here is an abbreviated post:
First, thanks for writing vimclojure! I think it's great! 1. README.txt contains incorrect information about what jar files are required to get vimclojure working. The correct list is: vimclojure.jar clojure-1.0.0.jar clojure-contrib-def-919.jar clojure-contrib-pprint-919.jar clojure-contrib-stacktrace-919.jar 2. I had a tilde (~) character in my classpath. This would not work for me. It might have something to do with symbolic links in my classpath. Using full pathnames resolved this issue. 3. CLOJURE_EXT is confusing. I tried to grok this to understand what jar files were required to run vimclojure. Ah, I see the -maxdepth 1 argument to find... This means your CLOJURE_EXT definition is not correct. It should read: CLOJURE_EXT -> The path to a base directory that will be recursively searched (maxdepth 1) for jar files to put on the classpath. F.E. $ CLOJURE_EXT=/src/vimclojure-2.1.2 ./bin/ng-server 4. There is no example of how to use vimclojure in the docs! <LocalLeader> is also confusing. I've been using vim for > 20 years and I've never seen this. The docs on it are poor (Leader = defines a mapping ... ?) It would have helped a lot to see something like this: 1. vi test.clj (file must end in .clj) 2. \sr (yes, start by typing the backslash. '\' is the <LocalLeader>) 3. you should see the screen split into two with the top being the REPL. 4. try some Clojure=> (def v [1 2 3]) 5. To switch between the REPL and test.clj: ESC (to get out of input mode) CTRL-W CTRL-W Again, thank you so much for vimclojure! Cheers. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---