1) launch: Search->Icicles->+Search Buffers
2) Input my regex
3) Iclcles presents the buffer Completions with my buffers listed.
How do I select more than one?
Thanks
Mike
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default, in Icicles C-RET (aka C-return) is the candidate action key. Wnenever you use a multi-command , it acts on the current completion candidate, without exiting the minibuffer. (You can cycle to a candidate to make it current.)
Alternatively, you can just click a candidate in buffer
*Completions*with C-mouse-2. Another alternative is to use the menus. So even if for some reason you cannot use C-RET you can still choose multiple candidates (in this case, buffers), by clicking them.If, however, you want to change the candidate action key from C-RET to something else, just customize user option
icicle-candidate-action-keys— it is the list of keys that act on the current candidate.More generally, even when there is not a specific user option (such as
icicle-candidate-action-keys) for customizing a particular key, you can always assign the key you want. For a top-level key, just define the key you want inicicle-mode-map.For a minibuffer key, use function
add-hooktogether withminibuffer-setup-hookandminibuffer-exit-hookto add and remove the key binding to/from thecurrent-local-map(which will be the current minibuffer map).See customizing Icicles key bindings.