Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waymondo/use-package-chords
key-chord keyword for use-package
https://github.com/waymondo/use-package-chords
Last synced: about 2 months ago
JSON representation
key-chord keyword for use-package
- Host: GitHub
- URL: https://github.com/waymondo/use-package-chords
- Owner: waymondo
- Created: 2015-09-23T20:11:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T22:33:43.000Z (about 2 months ago)
- Last Synced: 2024-11-15T23:24:02.854Z (about 2 months ago)
- Language: Emacs Lisp
- Size: 7.81 KB
- Stars: 23
- Watchers: 5
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[`key-chord`](http://www.emacswiki.org/emacs/key-chord.el) keyword support for `use-package` that is
built into Emacs.## Installation and Usage
Recommended install from [MELPA](https://melpa.org/) with `M-x
package-install use-package-chords`. Then require it after `use-package`, i.e.:``` elisp
(require 'use-package)(use-package use-package-chords
:demand t
:config (key-chord-mode 1))
```With this extension, you can define chords using the `:chords` keyword in the same manner
as `:bind` and related keywords, using a cons or a list of conses:``` elisp
(use-package ace-jump-mode
:chords
("jj" . ace-jump-char-mode)
("jk" . ace-jump-word-mode)
("jl" . ace-jump-line-mode))
```