22 lines
1.4 KiB
TOML
22 lines
1.4 KiB
TOML
[keyboard]
|
|
bindings = [
|
|
{ key = "V", mods = "Control|Shift", action = "Paste" },
|
|
{ key = "C", mods = "Control|Shift", action = "Copy" },
|
|
{ key = "Paste", action = "Paste" },
|
|
{ key = "Copy", action = "Copy" },
|
|
{ key = "Insert", mods = "Shift", action = "PasteSelection" },
|
|
{ key = "F", mods = "Control|Shift", action = "SearchForward", mode = "~Search" },
|
|
{ key = "B", mods = "Control|Shift", action = "SearchBackward", mode = "~Search" },
|
|
{ key = "Key0", mods = "Control", action = "ResetFontSize" },
|
|
{ key = "Equals", mods = "Control", action = "IncreaseFontSize" },
|
|
{ key = "Minus", mods = "Control", action = "DecreaseFontSize" },
|
|
{ key = "L", mods = "Control", action = "ClearLogNotice" },
|
|
{ key = "L", mods = "Control", chars = "\f" },
|
|
{ key = "PageUp", mods = "Shift", action = "ScrollPageUp", mode = "~Alt" },
|
|
{ key = "PageDown", mods = "Shift", action = "ScrollPageDown", mode = "~Alt" },
|
|
{ key = "Up", mods = "Shift", action = "ScrollLineUp", mode = "~Alt" },
|
|
{ key = "Down", mods = "Shift", action = "ScrollLineDown", mode = "~Alt" },
|
|
{ key = "Home", mods = "Shift", action = "ScrollToTop", mode = "~Alt" },
|
|
{ key = "End", mods = "Shift", action = "ScrollToBottom", mode = "~Alt" },
|
|
]
|
|
|