Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/helm/helm-descbinds/helm-descbinds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions packages/helm/helm-descbinds.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
layout: page
title: "helm-descbinds"
description: "describe-bindingsの helmインタフェース"
package: true
category: "helm"
tags: ["helm"]
---
{% include JB/setup %}

## 概要

[helm-descbinds.el](https://github.com/emacs-helm/helm-descbinds)は `describe-bindings`の helmインタフェースです.
Emacsはデフォルトでも膨大なキーバインドが存在するため, `describe-bindings`を使っても
目的のコマンドを見つけ出すのはなかなか大変ですが, helmインタフェースを利用することで
コマンドの検索が比較的容易になります.


また`helm-descbinds.el`は以下の機能が提供されます

* コマンドの実行
* ドキュメントの表示
* 定義元への移動


persistent-action(`C-z`)はドキュメントの表示となっています.


## スクリーンショット

![helm-descbinds](/images/helm/helm-descbinds/helm-descbinds.png)


バインドされたコマンドを検索する際は, キー(`C-c`等)とコマンド名を意識して検索すると良いでしょう.


## インストール方法

helm-descbindsは MELPAに登録されているので, package.elを使ってインストールすることができます.


## 必要要件

* Emacs 23以上
* helm


## 設定

helm-descbinds-modeを実行することで, `describe-bindings`のキーバインドである `C-h b`が上書きされ, `helm-descbinds`になります.

```common-lisp
(require 'helm-descbinds)
(helm-descbinds-mode)
```

Emacs 23をお使いの方は `helm-descbinds-mode`の部分を以下のように変更してください

```common-lisp
(helm-descbinds-mode 1)
```