Fork me on GitHub
#cursive
<
2023-02-11
>
danielcompton22:02:56

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]

cfleming00:02:54

That’s https://github.com/cursive-ide/cursive/issues/2763, which is fixed in the current EAPs.

👍 4