This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-24
Channels
- # announcements (2)
- # beginners (22)
- # cider (10)
- # clojure (47)
- # clojure-italy (2)
- # clojure-spec (2)
- # clojure-uk (1)
- # clojurebridge (5)
- # clojurescript (19)
- # cursive (1)
- # data-science (7)
- # datomic (2)
- # duct (18)
- # emacs (6)
- # figwheel-main (2)
- # java (2)
- # luminus (1)
- # nrepl (20)
- # off-topic (69)
- # om (3)
- # pathom (45)
- # quil (2)
- # re-frame (16)
- # reagent (1)
- # reitit (6)
- # ring (2)
- # shadow-cljs (33)
- # tools-deps (9)
- # vim (6)
- # yada (1)
so I'm struggling when copy/paste refactoring due to paredit. I know C-q )
will let me force insert a closing paren but how do I force delete a closing paren?
I'm thinking the real solution will be to splice, barf, or slurp somewhere in the function right? but I would like the option to force delete if possible.
well the real solution seems to actually be to kill only to the appropriate paren but still!
I don't understand this pain because it's easy to copy and paste valid s exprs. Why are you ending up with invalid expressions
I think what was happening is I was killing from within the middle of a large function and not ending my point at the appropriate paren. So the solution is to pay better attention to my rainbow delimiters and make sure I have the valid s expr from the very beginning instead of just taking it all the way to the end of the line.
Prefix with C-u
to force delete, e.g. C-u C-d