If you evaluate the file (ns test.core (:refer-clojure :exclude [get])) (defn foo "I don't do a whole lot." [x] (println x "Hello, world!"))
(basically what "lein new" creates, with the refer-clojure line added), switch to that namespace in the interaction buffer, and hit "tab", you get a gigantic traceback ultimately complaining that the symbol "get" can't be resolved. "Get" doesn't have to resolve to clojure.core/get for autocomplete to work: adding (def get 1) solves the problem. -- Ben Wolfson "Human kind has used its intelligence to vary the flavour of drinks, which may be sweet, aromatic, fermented or spirit-based. ... Family and social life also offer numerous other occasions to consume drinks for pleasure." [Larousse, "Drink" entry] -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
