Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

binds: add nested submaps example #902

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
binds: refactor nested submaps example
  • Loading branch information
davc0n committed Dec 15, 2024
commit e756a538c9b59a90f93ef2369e0cadfbb302648f
24 changes: 12 additions & 12 deletions pages/Configuring/Binds.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,25 +427,25 @@ submap = main_submap
# ...

# nested_one
bind = , 1, submap, nested_one
submap = nested_one
bind = , 1, submap, nested_one
submap = nested_one

# ...
# ...

bind = SHIFT, escape, submap, reset
bind = , escape, submap, main_submap
submap = main_submap
bind = SHIFT, escape, submap, reset
bind = , escape, submap, main_submap
submap = main_submap
# /nested_one

# nested_two
bind = , 2, submap, nested_two
submap = nested_two
bind = , 2, submap, nested_two
submap = nested_two

# ...
# ...

bind = SHIFT, escape, submap, reset
bind = , escape, submap, main_submap
submap = main_submap
bind = SHIFT, escape, submap, reset
bind = , escape, submap, main_submap
submap = main_submap
# /nested_two

bind = , escape, submap, reset
Expand Down