tos/packages/tos-app-browser/config.py

25 lines
598 B
Python
Raw Normal View History

2024-07-11 10:31:32 +00:00
# Config
config.load_autoconfig(False)
c.window.hide_decoration = True
c.statusbar.show = "in-mode"
c.tabs.tabs_are_windows = True
c.tabs.show = "multiple"
# Bindings
config.bind("n", "scroll left")
config.bind("e", "scroll down")
config.bind("i", "scroll up")
config.bind("o", "scroll right")
config.bind("j", "search-next")
config.bind("h", "mode-enter insert")
config.bind("l", "cmd-set-text -s :open")
config.bind("N", "back")
config.bind("E", "tab-next")
config.bind("I", "tab-prev")
config.bind("O", "forward")
config.bind("J", "search-prev")
config.bind("L", "cmd-set-text -s :open -t")