Wilfred / suggest.el

discover elisp functions that do what you want
367 stars 14 forks source link

Try passing the function to mapcar #31

Closed Wilfred closed 6 years ago

Wilfred commented 7 years ago

This would help us with the following:

;; Inputs (one per line):
"abc"

;; Desired output:
'(?a ?b ?c)

(mapcar #'identity my-input) would work here.