LoginSignup
0

More than 5 years have passed since last update.

anything 導入時の describe-bindings で全てのキーバインドを表示する

Posted at

Emacs 使いにはお馴染みの anything を導入すると、describe-bindings が descbinds-anything.el に置き換えられ、キーバインド一覧を anything インターフェイスで利用できる。

この describe-bindings、各モードにつきキーバインド最大表示数が 50 に制限されているため、一度に全てのキーを一覧表示することができない。その挙動に納得がいかなければ以下のコードを .emacs に記述すればよい。

(add-to-list 'descbinds-anything-source-template '(candidate-number-limit . 9999))

9999 は各モードの最大表示数なので、好みやスペックに合わせて好きな数に設定するのがいいだろう。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0