Skip to content

Commit

Permalink
Merge pull request #475 from RedBearAK/dev_beta
Browse files Browse the repository at this point in the history
Add override keymap for Wave terminal
  • Loading branch information
RedBearAK authored Dec 18, 2024
2 parents a1b52da + c4129cd commit 344e832
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions default-toshy-config/toshy_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4279,6 +4279,14 @@ def getDK():
C("RC-Equal"): C("C-Alt-Equal"), # Increase font size
}, when = matchProps(clas="^terminology$"))

keymap("Wave terminal", {
C("RC-t"): C("Alt-t"), # Open a new tab
C("RC-n"): C("Alt-n"), # Open a new terminal block
C("Shift-RC-n"): C("Shift-Alt-n"), # Open a new window
C("RC-w"): C("Alt-w"), # Close the current block
C("Shift-RC-w"): C("Shift-Alt-w"), # Close the current tab
}, when = matchProps(clas="^Wave$"))

keymap("Xfce4 terminal", {
C("RC-comma"): [C("Alt-e"), sleep(0.1), C("e")], # Open Preferences dialog
}, when = matchProps(clas="^xfce4-terminal$"))
Expand Down

0 comments on commit 344e832

Please sign in to comment.