See LightTable/LightTable#744; the original comment:
Idea has this great feature where you can hit a hotkey and select the word underneath the cursor. If you have a selection, then the same hotkey will 'grow' the selection to be the parent word or form of the current selection. In this way, you can very quickly select and manipulate code in terms of forms rather than by line. This works really well when combined with the eval hotkey (cmd-enter in LT) and would be a great fit in LT IMHO.
This comment also links to code that could be used to implement this:
Cool to see enthusiasm for a feature. Unfortunately, we have higher priority items to fix and improve (including paredit). Happy to discuss a pull with anyone interested in developing this.
Fwiw, I currently highlight the current clojure word with this command. It needs to be improved though since it highlights differently than :paredit.select.parent. Probably would be fixed with the right selection call to codemirror.
The code linked-to in the above quoted comment:
(defn current-word []
(:string (clojure/find-symbol-at-cursor (pool/last-active))))
(defn find-next-clojure-word []
(let [word (current-word)]
(find/set-val find/bar word) ;; necessary for find.next to work
(object/raise find/bar :search! word)))
(cmd/command {:command :ltfiles.find-next-clojure-word
:desc "ltfiles: Finds next clojure word"
:exec find-next-clojure-word})
See LightTable/LightTable#744; the original comment:
This comment also links to code that could be used to implement this:
The code linked-to in the above quoted comment: