Choosing a clojure form in emacs

I use emacs to develop clojure with the swank-clojure package.

I would like to copy the form under my pointer, how do I do this?

ex, if my mouse pointer is in the internal form, it is automatically highlighted, however how to select it so that I can copy it. In the following form, a bold bracket indicates where my pointer is (def a (str "a" "b" ) )

+3
source share
2 answers

Go to the beginning of sexp: C-M-band clickC-M-<space>

+5
source

The expand-region that I talked about in this , the answer is exactly what you need.

C-M-h (mark-defun) , .

+2

All Articles