Version 0.4.4

pull/113/head v0.4.4
Takashi Kokubun 2 years ago
parent 18ee84e934
commit 38c8485704
No known key found for this signature in database
GPG Key ID: 6FFC433B12EE23DD

@ -1,3 +1,8 @@
## v0.4.4
* Support Vim-like modal remapping by `mode`, `set_mode`, and `default_mode`
[#93](https://github.com/k0kubun/xremap/pull/93)
## v0.4.3
* Produce xremap binary releases on Ubuntu 18.04

2
Cargo.lock generated

@ -1059,7 +1059,7 @@ dependencies = [
[[package]]
name = "xremap"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"anyhow",
"clap",

@ -1,6 +1,6 @@
[package]
name = "xremap"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
description = "Dynamic key remapp for X and Wayland"
license = "MIT"

@ -198,10 +198,14 @@ keymap:
MOD1-KEY_XXX: { with_mark: MOD2-KEY_YYY }
# the next key press will ignore keymap
MOD1-KEY_XXX: { escape_next_key: true }
# set mode to configure Vim-like modal remapping
MOD1-KEY_XXX: { set_mode: default }
application: # Optional
not: [Application, ...]
# or
only: [Application, ...]
mode: default # Optional
default_mode: default # Optional
```
For `KEY_XXX`, use [these names](https://github.com/emberian/evdev/blob/1d020f11b283b0648427a2844b6b980f1a268221/src/scancodes.rs#L26-L572).

Loading…
Cancel
Save