Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve conflicting bindings for Meta+N #187

Merged
merged 1 commit into from
Sep 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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