Fork me on GitHub
#cursive
<
2018-11-23
>
cfleming03:11:12

@raymcdermott I can’t reproduce this. I have a simple test project:

(ns cursive-775.core
  (:require [catching.stacks :refer [go-catching <?]]))

(go-catching (/ 1 0))

(go-catching (<? 'mid-fn 123))

cfleming03:11:38

And this:

(ns catching.stacks)

#?(:clj
   (do
     (defmacro <? [fn-name ch])

     (defmacro go-catching [& body])))

cfleming03:11:16

Are you able to share that project?

cfleming03:11:36

Failing that, could you try to recreate a small test project that reproduces it for you?

henryw37410:11:23

Hi @cfleming, I just got the latest release, hoping to try out deps.edn on windows. in the settings, no versions are showing and 'refresh/download' doesnt do anything. I am working in a corp. internet, but i do have intellij proxy settings set up to access the outside world. I had a similar issue with cursive and lein when i first installed, but i could manually install lein and cursive worked fine after that. can i manually install tools.deps jar somewhere so cursive will find it?

dabrazhe12:11:28

@cfleming here’s what I mean by the doc string hint in Atom. You can cycle through hints and it will show the doc string below. It saves time I’d spent for looking it up or repl-ing it with (doc fun) https://goo.gl/images/68mwEp

cfleming22:11:52

@henryw374 I’ll check that code, it’s possible it doesn’t set the proxy correctly. Unfortunately I don’t think it’s possible to install manually, I’ll check that too.

henryw37414:01:12

did you have any luck investigating this?

cfleming22:11:26

@dennisa I see - it’s possible in IntelliJ to press Ctrl-J (or whatever your documentation popup is bound to) when you’re in a completion list, like this:

dabrazhe19:11:02

@cfleming This is great! What are the standard Mac Os key mappings? I see F12, but it seems to be too clumsy to be a standard..

cfleming22:11:40

As you move through the completion elements the doc will be updated.