Key generator for macos keybinding system
Project description
Compose Key On Macos
gen-compose
- generates compose key keybindings for macos.
A compose key (sometimes called multi key) is a key on a computer keyboard that indicates that the following (usually 2 or more) keystrokes trigger the insertion of an alternate character, typically a precomposed character or a symbol. https://en.wikipedia.org/wiki/Compose_key
Compose keys lets you insert complex character by entering multiple characters in a succession:
e.g. <compose_key> + d + o + w + n
will insert 👇
Mac os doesn't come with a compose key feature built-in. However there's a short hack to make it work:
- Keys can be rebound in mac via
~/Library/KeyBindings/DefaultKeyBinding.dict
dictionary file. - The rebound keys can be chained like compose keys e.g. pressing
abcd
can be made to insertAlphaBetaCharlieDad
- Modifier keys cannot be rebound
With these three rules we can replicate compose key and even set it to work with a mod key!
Install
gen-compose
can be installed via python manager with py3.6+ versions:
$ pip3 install --user gen-compose
$ gen-compose --help
Usage: gen-compose [OPTIONS] [MAPPINGS]...
Generate macos rebind file from compose json mapping
Options:
--key TEXT key to use as compose key [default: §]
-r, --raw just keymap without prefix
--help Show this message and exit.
Preconfig
-
First lets fix modifier key issue by forcing modifier to be a character. For example to use
right_options
key we need to use karabiner elements and remap it to some unused key likenon_us_backslash
: -
Now we have the compose key ready: if we click right_options it should insert
§
character
However we cannot compose anything yet as we have no compose mappings yet. For that we need to modify keybindings dictionary located in~/Library/KeyBindings/DefaultKeyBinding.dict
.
It's written in some cryptic hard to edit format and here's wheregen-compose
comes in and lets you writeyaml
files instead!
Usage
- Create yaml mappings file (e.g.
mappings/readme.yaml
):cat: "(^≗ω≗^)" "+1": 👍 "-1": 👎 ":(": "my face is sad"
This map defines key combinations and texts that will be inserted, e.g.<compose_key><plus><number 1>
will insert thumbs up.
note: see mappings directory for some built in mappings - Using
gen-compose
we generated.dict
keybind file file from our yaml configuration:$ gen-compose mappings/readme.yaml {"§" = { "c" = { "a" = { "t" = ("insertText:", "(^≗ω≗^)"); }; }; "+" = { "1" = ("insertText:", "👍"); }; "-" = { "1" = ("insertText:", "👎"); }; ":" = { "(" = ("insertText:", "my face is sad"); }; };}
note: multiple mappings can be used to generate a single keymap:$ gen-compose map1.yaml map2.yaml
- Now save it directly to keybinds file:
$ gen-compose mappings/readme.yaml > ~/Library/KeyBindings/DefaultKeyBinding.dict
- Restart your programs and type
§+1
and you'll see👍
! - Customize your own mapping or see
/mappings
for some existing configurations and have fun!
note: Some programs need a hard reboot to take in the map, like kill -9
sort of reboot to start working.
Using XCompose Mappings
Linux's xcompose mappings are supported via experimental conversion:
$ gen-compose-convert xcompose --help
Usage: gen-compose-convert xcompose [OPTIONS] [FILES]...
Convert xcompose file, that follows format like: <Multi_key> <parenleft>
<period> <1> <parenright>: "⑴"
Options:
-c, --keep-comments keep inline comments
--help Show this message and exit.
For example:
$ head mappings/example.compose
<Multi_key> <B> <bar> : "₿" U20BF # BITCOIN SIGN
...
$ gen-compose-convert xcompose mappings/xcompose.compose --keep-comments > example.yaml
$ cat example.yaml
"B|": "₿" # BITCOIN SIGN
...
Exporting to XCompose
gen-compose-export
command can be used export yaml configuration back to XCompose file:
$ gen-compose-export --help
Usage: gen-compose-export [OPTIONS] YAMLFILE
Export .yaml config file back to XCompose file i.e. this is reverse of
gen-compose-convert
Options:
--help Show this message and exit.
For example:
$ head mappings/xcompose.yaml
"..": "…" # HORIZONTAL ELLIPSIS
"v..": "⋮" # VERTICAL ELLIPSIS
...
$ gen-compose-export mappings/xcompose.yaml > xcompose.compose
$ head xcompose.compose
<Multi_key> <period><period>:"…"
<Multi_key> <v><period><period>:"⋮"
<Multi_key> <c><period><period>:"⋯"
<Multi_key> <slash><period><period>:"⋰"
<Multi_key> <period><backslash><period>:"⋱"
<Multi_key> <2><period>:"‥"
<Multi_key> <c><1><period>:"·"
<Multi_key> <period><slash><period>:"⁒"
<Multi_key> <ampersand><at>:"⅋"
<Multi_key> <ampersand><7>:"⁊"
...
Notes and Issues
- There's no way to really debug this other than trial and error and making sure applications are restarted after every update.
- When multiple keymaps (eg
compose-gen map1.yaml map2.yal
) provided they will be joined and updated in order they are provided. - Keymap does not allow completely overlapping keys. e.g.
egg
andeggplant
will break because it's impossible to map two overlapping values as keymap functionality has no timeout (i.e. break if nothing is typed after a second and insertegg
, instead it will wait indefinitely for you to finisheggplant
)
If overlap happenscompose-gen
will choose the shorter form and discard the long one.
To fix this add end terminator character such as space:egg<space>
rather thanegg
in your mappings. DefaultKeyBinding.dict
map doesn't work in some popular programs:- JetBrain editors such as PyCharm, see: https://youtrack.jetbrains.com/issue/IDEA-127470
- QT apps such as Qutebrowser, see (and vote): https://bugreports.qt.io/browse/QTBUG-393
Related Resources
https://github.com/gnarf/osx-compose-key
http://lolengine.net/blog/2012/06/17/compose-key-on-os-x
http://bob.cakebox.net/osxcompose.php
https://github.com/ttscoff/KeyBindings
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gen-compose-1.2.0.tar.gz
.
File metadata
- Download URL: gen-compose-1.2.0.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.19.7-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb7f2e645fde181318643177a29e0e2c58df0d0e4487c5dd2dd51ba599f53367 |
|
MD5 | 44b7c476d823f77fb4730607be893df6 |
|
BLAKE2b-256 | 81b03beea58cd60e133b2bf07e3a7e84fe47cc42076b47810ac8adaf1716bc62 |
File details
Details for the file gen_compose-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: gen_compose-1.2.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.19.7-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeeba5378878063b76d82e3588d5cd303c2ee0749b5ce6c3080be7cf502e47e4 |
|
MD5 | 215d94eafc6b88162553d8cfad23ed7a |
|
BLAKE2b-256 | 5c6472a4193920df74a719c89ca70851a85c95a689c719131a0cb70ad0636ed9 |