diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-09-22 08:15:20 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-09-22 08:15:20 -0300 |
commit | d46ad8aa151422c6171148cf617d0bfd2e1fb78b (patch) | |
tree | abfd9215c1c7d0c5f9e3c16210d426b41d6fc83b | |
parent | fef2345a272fb3ff8e1f270c743519c81c938d5f (diff) | |
download | luakit-d46ad8aa151422c6171148cf617d0bfd2e1fb78b.tar.gz luakit-d46ad8aa151422c6171148cf617d0bfd2e1fb78b.tar.bz2 |
Change back/forward bindings
-rw-r--r-- | config.dot/luakit.link/keys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.dot/luakit.link/keys.lua b/config.dot/luakit.link/keys.lua index 61e5ea0..0e858ad 100644 --- a/config.dot/luakit.link/keys.lua +++ b/config.dot/luakit.link/keys.lua @@ -11,8 +11,8 @@ modes.remove_binds("normal", { "y" }) -- Add custom binds modes.add_binds("normal", { - { "b", "Go back in the browser history `[count=1]` items.", function (w, m) w:back(m.count) end }, - { "f", "Go forward in the browser history `[count=1]` times.", function (w, m) w:forward(m.count) end }, + { "<Mod1-Left>", "Go back in the browser history `[count=1]` items.", function (w, m) w:back(m.count) end }, + { "<Mod1-Right>", "Go forward in the browser history `[count=1]` times.", function (w, m) w:forward(m.count) end }, { "h", "New blank tab", function (w) w:new_tab('luakit://newtab') end}, |