cursive-ide / cursive

Cursive: The IDE for beautiful Clojure code
578 stars 7 forks source link

Step between functions for protocol methods #360

Open ghost opened 10 years ago

ghost commented 10 years ago

Right now Step-between-functions stops at defn:

(defn component [app-state owner]
(reify
   om/IInitState
  (init-state [_]
     {:selected-service nil})
  om/IWillMount
  (will-mount [_]
     (sub! :route-service
         (fn [service]
           (om/set-state! owner :selected-service service))))

It would be nice if Step-between-functions would jump from component to init-state.

cursive-ide commented 10 years ago

Good idea, this would be great.