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
I want a to be able to evaluate-to-cursor from a wherever before the cursor. Evaluate From Start of List is great, but only takes me that far if I have created a monster like this:
(nsfortytwo-lab)
;; Evaluate selection to Cursor
(defnfortytwo-from-thirty
[]
(let [thirty 30]
(-> thirty
(->>
inc
(+123) ; Eval from start of list => "6function be(a){return a+1}" (Joyride REPL)
(+22)
(+)) ; Eval from start of list => Could not resolve symbol: thirty
list
(->>
(into [1])
(reduce + 1))
(-1)
(*-1))))
(comment
(fortytwo-from-thirty) ;; => -42 (WRONG answer! (or question?))
)
If I could somehow choose the starting point for the Evaluate to cursor, I could include the let binding and examine the monster much better.
The text was updated successfully, but these errors were encountered:
I want a to be able to evaluate-to-cursor from a wherever before the cursor. Evaluate From Start of List is great, but only takes me that far if I have created a monster like this:
If I could somehow choose the starting point for the Evaluate to cursor, I could include the
let
binding and examine the monster much better.The text was updated successfully, but these errors were encountered: