tpope / vim-fireplace

fireplace.vim: Clojure REPL support
https://www.vim.org/scripts/script.php?script_id=4978
1.75k stars 139 forks source link

No OmniComplete for symbols form other namespace #209

Closed ghost closed 9 years ago

ghost commented 9 years ago

Given

(ns hw.test)
   (def t 10)
    (defn hallo [] 3)

When I require this namespace like this

(ns hw.core
  (:require [hw.test :as tt]))

Then I do not get any code completion for symbols from hw.test if I'm in the hw.core file.

Is this expected ?

tpope commented 9 years ago

Should work fine if you absolutely qualify them.

ghost commented 9 years ago

After more digging I realized that YouCompleteMe is the problem here.