align-cljlet icon indicating copy to clipboard operation
align-cljlet copied to clipboard

Add support for core.match

Open bsima opened this issue 10 years ago • 0 comments

Currently match formats like this:

(defn val?
  [x]
  (match [x]
         [_ :guard keyword?] false
         [_ :guard coll?]    false
         :else true))

But it should format like this:

(defn val?
  [x]
  (match [x]
    [_ :guard keyword?] false
    [_ :guard coll?]    false
    :else true))

bsima avatar Nov 04 '15 18:11 bsima