clj-suitable icon indicating copy to clipboard operation
clj-suitable copied to clipboard

ClojureScript "IntelliSense" support for JS objects and their properties/methods. Via figwheel and Emacs CIDER.

Results 10 clj-suitable issues
Sort by recently updated
recently updated
newest added

I can get completions with browser runtime, but no luck with react native runtime. Wanna confirm if react native is supported here. I am on Calva with shadowcljs.

Thanks so much for the amazing library! I just got it set up for the first time -- and I'm finding that in `->` chains, I'm seeing side-effects being evaluated...

It would be nice if clj-suitable supported to have completion for Javascript libraries that are already installed in projects node_modules project. `shadow-cljs` already supports requiring those libraries and using them...

~Currently, suitable can't auto-complete local vars like:~ ``` (let [d js/document] (.. d (queryS....))) ``` Because it only sends `(suitable.js-introspection/property-names-and-types d "queryS")` to the REPL. It also can't understand the...

``` $ clj -Asuitable 2019-10-08 01:06:51.710:INFO::main: Logging initialized @4424ms to org.eclipse.jetty.util.log.StdErrLog [Figwheel] Compiling build dev to "target/public/cljs-out/dev-main.js" ... [Rebel readline] Type :repl/help for online help info Opening URL http://localhost:9500 Failed...

Sorry for posting an image, didn't know how to show it otherwise. Note that I pressed auto-complete a couple of times and each time a goog.require is done. Using the...

Given https://github.com/thheller/shadow-cljs/blob/51b15dd52c74f1c504010f00cb84372bc2696a4d/src/main/shadow/cljs/devtools/server/nrepl_impl.clj#L46-L59 , I believe it's no longer necessary to have shadow-cljs specific code.

A possible refinements for https://github.com/clojure-emacs/clj-suitable/pull/36 that I thought of: * If any element within the `->` chain starts with `.`, then consider that the operand is js, not cljs, no...

I'm trying to use suitable with neovim, shadow-cljs, and cider-nrepl. My shadow-cljs.edn specifies suitable and cider-nrepl as deps and I have suitable.js-introspection as a preload. the following occurs in the...

I'm using recent version of shadow-cljs and I am not getting completions for ``` (.l| js/console) ``` as advertized in the README. `js/cons|` etc. do complete, and thankfully so do...