Re: ClojureScript macro import

2011-11-15 Thread kovas boguta
Bump. Is this still the case? That its not possible to have user-created macros targeting clojurescript without namespace prefixes? On Tue, Aug 9, 2011 at 2:31 PM, Kevin Lynagh klyn...@gmail.com wrote: Okay, that's the impression I got from poking around but I just wanted to make sure I

Re: ClojureScript macro import

2011-11-15 Thread David Nolen
:use-macros is now supported. On Tue, Nov 15, 2011 at 5:18 PM, kovas boguta kovas.bog...@gmail.comwrote: Bump. Is this still the case? That its not possible to have user-created macros targeting clojurescript without namespace prefixes? On Tue, Aug 9, 2011 at 2:31 PM, Kevin Lynagh

Re: ClojureScript macro import

2011-08-09 Thread Stuart Sierra
It's not currently possible to refer macros without a namespace prefix: ClojureScript does not have `refer` or `use`. There have been some discussions around this, don't have a link handy. -Stuart Sierra clojure.com -- You received this message because you are subscribed to the Google Groups

Re: ClojureScript macro import

2011-08-09 Thread Kevin Lynagh
Okay, that's the impression I got from poking around but I just wanted to make sure I wasn't missing anything. Thanks Stuart. On Aug 9, 1:46 pm, Stuart Sierra the.stuart.sie...@gmail.com wrote: It's not currently possible to refer macros without a namespace prefix: ClojureScript does not have

ClojureScript macro import

2011-08-07 Thread Kevin Lynagh
Is it possible to use macros within ClojureScript without having to fully reference them? Right now I have (ns hack.cljs.hello (:require-macros [d3-macros :as d3m])) and have to use the form (d3m/my-macro ...) Ideally I could just say (my-macro ...) Is this possible? Bonus