-
Notifications
You must be signed in to change notification settings - Fork 31
Add helm-descbinds page(#73) #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
images/helm/helm-descbinds/helm-descbinds.png
61 changes: 61 additions & 0 deletions
packages/helm/helm-descbinds.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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`)はドキュメントの表示となっています. | ||
|
|
||
|
|
||
| ## スクリーンショット | ||
|
|
||
|  | ||
|
|
||
|
|
||
| バインドされたコマンドを検索する際は, キー(`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) | ||
| ``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.