You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
file a ticket and put there our conversation highlights. Then everything is possible. -- @bbatsov
problem
Consider the following expression:
(let [doge 20]
(def awesome (fn [x] (* x 3)))
(let [cider (awesome doge)]
(+ cider doge) ;; cursor is here
(stuff we d9n 't care about)
(more stuff we dont care about)))
Is there a wa yto make C-x C-e work ?
key idea
find 'outermost enclosing sexp' by repeatedly looking up parent element
That’s actual much simpler as we already have the code that finds the top-level expression and the only thing needed it just terminate the expression after the current sexp. Should be trivial to implement.
-- @bbatsov
The text was updated successfully, but these errors were encountered:
motivation
problem
Consider the following expression:
Is there a wa yto make C-x C-e work ?
key idea
praise for this approach
The text was updated successfully, but these errors were encountered: