This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-17
Channels
- # bangalore-clj (4)
- # beginners (60)
- # boot (63)
- # cider (2)
- # cljs-dev (22)
- # cljsrn (3)
- # clojars (32)
- # clojure (133)
- # clojure-gamedev (1)
- # clojure-germany (17)
- # clojure-italy (1)
- # clojure-russia (11)
- # clojure-serbia (16)
- # clojure-spec (35)
- # clojure-uk (75)
- # clojurebridge (1)
- # clojurescript (83)
- # community-development (25)
- # core-async (43)
- # cursive (15)
- # datomic (28)
- # emacs (2)
- # fulcro (108)
- # graphql (5)
- # hoplon (15)
- # lein-figwheel (6)
- # leiningen (39)
- # lumo (106)
- # new-channels (1)
- # off-topic (4)
- # om (26)
- # om-next (53)
- # onyx (46)
- # other-languages (2)
- # perun (1)
- # protorepl (5)
- # re-frame (13)
- # ring (18)
- # ring-swagger (1)
- # rum (6)
- # shadow-cljs (82)
- # spacemacs (19)
- # specter (5)
- # sql (3)
- # test-check (31)
- # unrepl (12)
- # untangled (2)
- # vim (109)
@thosmos Cursive obeys the standard IntelliJ settings at Editor->General->Code Completion->Parameter Info
@cfleming thanks! that was really slowing my typing down. I wonder if there's an optimization in there somewhere? It would prevent my cursor from moving to the next character until after it ran through its search. Maybe it can happen on a background thread so it doesn't hinder typing?
Hi there! Issue #817 on Github is a request for cursive functionality to refactor a function to a new namespace. Does this feature exist yet?
@thosmos That definitely already happens on a background thread (except that all painting is on the EDT obviously), and shouldn’t affect typing. Weird that it did for you…
Ah, well... Are there any recommendations for how to rename namespaces using Cursive?
Unfortunately that’s mostly manual at the moment. Cursive will let you rename the last segment, i.e. everything it can rename without having to move files around.
does anyone know a good way of making Cursive handle the 'one big monthly repl commands history' file that Stu was talking about in https://vimeo.com/223309989?
I'm currently symlinking my ~/repl
directory into each project that I want to use this in, but IntelliJ complains about repl
not being a source folder, also you probably want multiple namespace declarations in that file, but Cursive complains that it doesn't match the file name in that case
are you trying to use the ns macro in that file? I don’t think you’d want the macro. I think you’ll always want to use the require
function instead
@U0E11941M yes, I tried that but symbols don't resolve in that case...
Is it possible to do a refactor where you switch parameter order, as well as argument order at all callsites, for a function?