summaryrefslogtreecommitdiffstats
path: root/posts/Another_way_to_get_a_selection.mdwn
blob: ebdc186314c180bfd9429e8e002e3e79e1b9cbbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
When I was first looking into improving my mailbox selection function
I was looking at how to just ask the user for input with
completions. Though now that I came across `tmm-prompt` I really
prefer this way of working, at least in this case.

However, today another function was mentioned, in response to someone
pointing out `org-completing-read`: `completing-read`. Wow that's a
far leap.

Anyway:

[[!format el """
(completing-read "Your favorite color: "
                 '("red" "green" "blue" "yellow"))
"""]]

This will ask for user input and provide these options as completions,
but it won't show a list of options, of provide shortcuts, like
`tmm-prompt` does.

It's good to know these things, and I really should read both the
emacs manual and the emacs lisp reference manual at some point.

[[!meta date="2012-05-03 10:04:00"]]
[[!tag emacs elisp org-mode coding]]