This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-02-11
Channels
- # announcements (1)
- # beginners (67)
- # calva (4)
- # cider (6)
- # clj-kondo (26)
- # clojure (61)
- # clojure-belgium (2)
- # clojure-sweden (1)
- # clojurescript (12)
- # community-development (27)
- # cursive (2)
- # datascript (4)
- # datomic (20)
- # emacs (4)
- # funcool (1)
- # graphql (11)
- # honeysql (3)
- # malli (15)
- # membrane (6)
- # nbb (4)
- # nextjournal (7)
- # pathom (8)
- # polylith (7)
- # rdf (1)
- # re-frame (1)
- # releases (2)
- # shadow-cljs (42)
- # specter (3)
- # tools-deps (25)
- # xtdb (17)
Has anything changed recently with namespace require formatting? Cursive seems to want to start them on a new line, rather than keeping them inline with the :require
e.g.
(ns my.ns
(:require [account.client :as client]
[account.client :as a.client]
[cemerick.url :as curl]
vs
(ns my.ns
(:require
[account.client :as client]
[account.client :as a.client]
[cemerick.url :as curl]
That’s https://github.com/cursive-ide/cursive/issues/2763, which is fixed in the current EAPs.
👍 4