How can I eval the surrounding form? Not the top form nor the atom at point, for example here:
(comment
(+ 1 2)
)
you want to treat (+ 1 2)
as the toplevel form rather than the whole comment
form?
(setq clojure-toplevel-inside-comment-form t)
and then eval top level form as normal anywhere inside the (+ 1 2)
or right after it. otherwise you can always put your cursor at the close of the paren after the 2 and eval last sexp
that is a nice feature, i will keep that in mind. thank you!