Не могу заставить VimClojure поговорить с NGServer
Я пытаюсь настроить Vim как среду программирования Clojure, используя следующие инструкции:
Я могу начать ng-server
из корня проекта Leiningen. Но всякий раз, когда я пытаюсь запустить repl в vim, я получаю:
; Use \p to close this buffer!
VimClojure could not initialise the server connection.
That means you will not be able to use the interactive features.
Reasons might be that the server is not running or that there is
some trouble with the classpath.
VimClojure will *not* start the server for you or handle the classpath.
There is a plethora of tools like ivy, maven, gradle and leiningen,
which do this better than VimClojure could ever do it.
я имею VimClojure
плагин установлен и добавил эти строки в мой .vimrc
файл:
let vimclojure#NailgunClient = "~/bin/ng"
let vimclojure#WantNailgun = 1
let g:clj_highlight_builtins=1 " Highlight Clojure's builtins
let g:clj_paren_rainbow=1 " Rainbow parentheses'!
RainbowParens
работает, и я могу получить ответ от ng
в командной строке.
Я тоже пробовал slime.vim
, В то время как это работает, требуется всего 5 секунд, чтобы ответить на простой (+ 2 3)
набрал в vim
, что довольно раздражает.
Помогите?