Skip to content

Instantly share code, notes, and snippets.

@curioussavage
Created September 18, 2017 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curioussavage/ac37d21722d2b66bb79a4c070fe7f56e to your computer and use it in GitHub Desktop.
Save curioussavage/ac37d21722d2b66bb79a4c070fe7f56e to your computer and use it in GitHub Desktop.
luakit config
local modes = require "modes"
modes.add_binds("normal", {
{ "L", "Go to next tab.", function (w) w:next_tab() end },
{ "H", "Go to previous tab.", function (w) w:prev_tab() end },
{ "J", "Go back in the browser history `[count=1]` items.", function (w, m) w:back(m.count) end },
{ "K", "Go forward in the browser history `[count=1]` times.", function (w, m) w:forward(m.count) end },
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment