私はvimclojureを動かそうとしています。私が間違ったことについて助けていただければ幸いです。lein プロジェクトの 1 つで project.clj を読み取ろうとすると、次のエラーが発生します。
; Use \p to close this buffer!
Could not determine the Namespace of the file.
This might have different reasons. Please check, that the ng server
is running with the correct classpath and that the file does not contain
syntax errors. The interactive features will not be enabled, ie. the
keybindings will not be mapped.
Reason:
Error executing Nail! (230)
connect: Connection refused
~/.vimrc の関連する行は次のとおりです。
filetype off
call pathogen#runtime_append_all_bundles()
filetype plugin indent on
let g:vimclojure#HighlightBuiltins = 1
let g:vimclojure#ParenRainbow = 1
let vimclojure#NailgunClient = "/home/cnorton/bin/ng"
let vimclojure#WantNailgun = 1
:helptags ~/.vim/bundle/VimClojure/doc/
そしてnailgunはCLASSPATHにあります
export CLASSPATH=/usr/share/java:/home/cnorton/bin:$CLASSPATH
export VIMCLOJURE_SERVER_JAR="$HOME/bin/server-2.3.0.jar"
何が欠けているか、および/または何が間違っていますか? ありがとうございました。