You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,19 @@
3
3
All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5
5
6
-
## [Version 5.0.0] - Unreleased
6
+
## [Version 5.0.0] - 2025-09-02
7
7
8
8
The reason for the major version number increment is mainly because of the changed behavior of `;`. Up until 4.9 it was documented to start comments like `#`. Otherwise all configurations should work like before.
9
9
10
10
### Added
11
11
12
12
- Allow to separate multiple mappings on one line with `;`. This is useful for macros which generate multiple mappings. e.g.:
13
-
14
13
```bash
15
14
swap = $0>>$1;$1>>$0
16
15
swap[Y, Z]
17
16
```
18
17
19
18
- Allow to add mappings for inputs which are released. e.g.:
20
-
21
19
```bash
22
20
# trigger when A is released
23
21
!A >> B
@@ -29,36 +27,45 @@ The reason for the major version number increment is mainly because of the chang
29
27
!A !B >> C
30
28
```
31
29
32
-
- Releasing virtual key when used as modifier. e.g.:
30
+
- Toggling virtual keys can also have immediate effects. Using them as modifiers is toggling them twice:
33
31
```bash
34
32
# toggle Virtual1 before and after pressing B
35
-
# this effectively maps A to A B C
33
+
# this effectively maps D to A B C
36
34
Virtual1 >> A ^ C
37
-
A>> Virtual1{B}
35
+
D>> Virtual1{B}
38
36
39
-
# it can also be empty. This maps A to A B
40
-
Virtual2 >> A ^ B
41
-
A >> Virtual2{}
37
+
# {} may also be empty. This maps C to A B
38
+
Virtual2 >> B
39
+
Virtual1 >> A Virtual2{}
40
+
C >> Virtual1{}
41
+
```
42
+
43
+
- Automatically replace `Virtual` with an unused virtual key. e.g.:
44
+
```bash
45
+
# assign different virtual keys to VimMode and CapsWord
0 commit comments