This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-23
Channels
- # 100-days-of-code (2)
- # aws (1)
- # beginners (105)
- # boot (36)
- # calva (4)
- # cider (56)
- # clara (37)
- # cljdoc (16)
- # cljs-dev (19)
- # clojure (44)
- # clojure-dev (20)
- # clojure-italy (24)
- # clojure-nl (3)
- # clojure-serbia (2)
- # clojure-spec (15)
- # clojure-uk (44)
- # clojurescript (41)
- # code-reviews (3)
- # core-async (12)
- # cursive (24)
- # datomic (4)
- # emacs (1)
- # figwheel-main (10)
- # fulcro (168)
- # funcool (2)
- # hyperfiddle (15)
- # jobs (2)
- # jobs-discuss (79)
- # juxt (19)
- # lein-figwheel (1)
- # leiningen (2)
- # luminus (14)
- # mount (8)
- # nrepl (9)
- # off-topic (9)
- # other-languages (1)
- # pathom (32)
- # reitit (6)
- # ring-swagger (3)
- # shadow-cljs (10)
- # slack-help (11)
- # spacemacs (20)
- # sql (29)
- # tools-deps (28)
- # vim (29)
- # yada (4)
Hi! Quick question: do the standard REPL commands in Cursive (i.e. evaluate form, load file in repl, change namespace, etc) not work with the cljs/figwheel repl?
returning to explore Cursive again. Starting from a fresh IntelliJ (IntelliJ IDEA 2018.2.5 (Community Edition)) and Cursive (Version: 1.8.0-eap8-2018.2) install. I've got a deps.edn project. When I open the project for the first time, I'm using "auto-import". I'm getting a sync failed
error message, as well as a separate window that mysteriously displays only clojure/java/api/Clojure
@peterwestmacott No, there isn’t, but I’m planning to fix the cljs interop case specifically.
@isak No - I’m planning to partially fix that with an “interrupt printing” button, but that will only fix the client side (which is usually the problem).
@grzm Either is fine, or email to <mailto:[email protected]|[email protected]> (depends if there’s anything sensitive in there)
@grzm Can you send me your log file? Help->Show log in Finder/Explorer. Probably best to send that via email.
@grzm I can’t see that one, for some reason gmail isn’t letting me download it. But can you post a screenshot of your config screen? Settings->Build, Execution, Deployment->Build tools->Clojure Deps
@cfleming perhaps I am doing something wrong then; I get “Cannot load ClojureScript form into Clojure repl”
@cfleming I'm failing to find the configuration you're looking for 😕 Is that accessible from a menu? Some button on a window?
@cfleming found it (`s/Settings/Preferences/` on my system) And updating the path to the clojure
script has gotten me further.
I am having some trouble with generating stubs for my project (lein + shadow-cljs). Getting the following error:
Error generating stubs for module elogic
Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
What should I do?I’ve solved this issue, however I am still running into some sort of indexing problem. One of my file contains this declaration:
(ns elogic.intro
(:require [devcards.core :as rc :refer-macros [defcard deftest]]
[elogic.ui.components :as comp]
[cljs.test :refer-macros [testing is]]))
Cursive does not pick up the devcards.core
import (and the macros). If I cmd-click on devcards.core
, it brings me to a javascript file. I’m using lein and shadow-cljs."interrupt current evaluation" for the REPL doesn't always seem to work. Particular case I'm noticing occurs when I load a file instead of sending forms individually. I'd like to be able to stop it without killing the process so some cleanup code can be run. I like loading the file because it doesn't pollute the command history, as opposed to selecting all and evaluating.