Wilfred / suggest.el

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

Don't pass all arguments at once #22

Open Wilfred opened 7 years ago

Wilfred commented 7 years ago

Given this:

;; Inputs (one per line):
(list 'abc :foo 'def)
:foo

;; Desired output:
'def

It would be nice to suggest (plist-get (cdr (list 'abc :foo 'def)) :foo). This requires passing :foo later.