I am sure that the answer to this question is obvious, but I read the documentation against Counterclockwise and searched the Internet and could not find it. I often find myself accidentally placing additional brackets, parsers, etc., while editing Clojure files in Counterclockwise, and could not figure out how to delete them without leaving the strict paredit mode. For example, suppose I have the following function:
(defn (add-x-y-z)
[x y z]
(+ x y z))
I accidentally placed parens around a function name, and as far as I can tell, there is no way to remove them without deleting the function name, deleting extra parsers and again entering the function name, or temporarily out of strict paredit mode. Is there any other option for this? For some reason, I often run into this problem.
source
share