Skip to content

Commit

Permalink
Resolve conflicting bindings for Meta+N
Browse files Browse the repository at this point in the history
  • Loading branch information
raboof committed Sep 25, 2019
1 parent 40e0799 commit 90e2731
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions etc/cfg_bindings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,10 @@ defbindings("WFrame", {
-- Frames for transient windows ignore this bindmap

defbindings("WFrame.toplevel", {
bdoc("Query for a client window to attach ('nick').", "nick"),
kpress(META.."N", "mod_query.query_attachclient(_)"),
bdoc("Attach tagged objects to this frame.", "nick"),
kpress(META.."N", "ioncore.tagged_attach(_)"),
bdoc("Query for a client window to attach ('nick').", "qnick"),
kpress(ALTMETA.."N", "mod_query.query_attachclient(_)"),

bdoc("Switch to tab 0 in this frame.", "tab 0"),
kpress(META.."A", "WFrame.switch_nth(_, 0)"),
Expand All @@ -283,9 +285,6 @@ defbindings("WFrame.toplevel", {
bdoc("Maximize the frame horizontally/vertically."),
kpress(META.."H", "WFrame.maximize_horiz(_)"),
kpress(META.."V", "WFrame.maximize_vert(_)"),

bdoc("Attach tagged objects to this frame."),
kpress(META.."N", "ioncore.tagged_attach(_)"),
})

-- Bindings for floating frames
Expand Down

0 comments on commit 90e2731

Please sign in to comment.