28 lines
1.3 KiB
Markdown
28 lines
1.3 KiB
Markdown
|
---
|
||
|
title: persistent-actionの使い方
|
||
|
author: kazu634
|
||
|
date: 2009-10-29
|
||
|
url: /2009/10/29/_1373/
|
||
|
wordtwit_post_info:
|
||
|
- 'O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";i:1;s:5:"delay";i:0;s:7:"enabled";i:1;s:10:"separation";s:2:"60";s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:4885;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}'
|
||
|
categories:
|
||
|
- Emacs
|
||
|
|
||
|
---
|
||
|
<div class="section">
|
||
|
<p>
|
||
|
Anythingには、 persistent-action という機能があります。要は候補を選択しても、候補の選択画面を出したままにできます。何が言いたいのか伝わりにくいかもしれませんが、実際に試してみてください。
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
たとえば、こんな設定を .emacs に書いてください。
|
||
|
</p>
|
||
|
|
||
|
<pre class="syntax-highlight">
|
||
|
<span class="synSpecial">(</span>define-key anything-map <span class="synConstant">"\C-z"</span> <span class="synSpecial">'</span><span class="synIdentifier">anything-execute-persistent-action</span><span class="synSpecial">)</span>
|
||
|
</pre>
|
||
|
|
||
|
<p>
|
||
|
この場合、「C-z」を押すと、 persistent-action が働きます。試してみてください!
|
||
|
</p>
|
||
|
</div>
|