We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pf
Given this:
(map #(-> % (str "!") symbol) '[aww yeah])
And I place my cursor on symbol and do cljr-promote-function and rename % to sym:
symbol
cljr-promote-function
%
sym
(map (fn [sym] (-> sym (str "!") symbol)) '[aww yeah])
With a prefix it will promote the function literal all the way to a defn.
And I place my cursor on symbol and do cljr-promote-function and call the fn shout-it!
shout-it!
(defn shout-it! [sym] (-> sym (str "!") symbol)) (map shout-it! '[aww yeah])