On Jan 19, 5:26 pm, Mark Nutter <[email protected]> wrote: > If you put the cursor on the opening paren and then hit C-k, it cuts > out exactly that sexp (and its contents) but no more, keeping the > parens perfectly balanced.
You want C-M-k, not C-k. C-k is a little more aggressive, since it always kills at least to the end of the line. Consider the following text, with | being the cursor/point: (defn foo [x] (+ |10 x)) C-M-k kills just the 10, while C-k kills the x as well. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
