https://github.com/zk-phi/ewow-keychord
A keychord extension for EWOW
https://github.com/zk-phi/ewow-keychord
ahk emacs
Last synced: 3 months ago
JSON representation
A keychord extension for EWOW
- Host: GitHub
- URL: https://github.com/zk-phi/ewow-keychord
- Owner: zk-phi
- Created: 2013-08-30T03:32:59.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-30T03:37:54.000Z (over 12 years ago)
- Last Synced: 2024-12-30T21:16:02.446Z (over 1 year ago)
- Topics: ahk, emacs
- Language: AutoHotkey
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.org
Awesome Lists containing this project
README
* lib_keychord.ahk
a keychord extension for EWOW.
** Usage
Load this library
: #Include lib_keychord.ahk
You may add a new keychord binding as follows :
: j:: keychord("k", "goto_char")
: k:: keychord("j", "goto_char")
then pressing "j" and "k" together will invoke "goto_char" command.
** Customization
You may adjust the sensibility with variable "keychord_delay".
: keychord_delay = 250