summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/luakit/binds.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/luakit/binds.lua b/.config/luakit/binds.lua
new file mode 100644
index 0000000..2fd6f91
--- /dev/null
+++ b/.config/luakit/binds.lua
@@ -0,0 +1,10 @@
+dofile("/etc/xdg/luakit/binds.lua")
+
+local key = lousy.bind.key
+
+add_binds("normal", {
+ key({}, "J", "Go to previous tab.",
+ function (w) w:prev_tab() end),
+ key({}, "K", "Go to next tab.",
+ function (w) w:next_tab() end),
+})