Skip to content

Unable to unbind ctrl+s keybind #3640

Answered by Lockszmith-GH
mock1328 asked this question in Q&A
Discussion options

You must be logged in to vote

If I recall correctly, people were successful with specifying all the unbind keys in one line, like:

keybinds {
    unbind "Ctrl q" "Ctrl s"
}

See: #1528

Zellij works in 'modes', with "Ctrl q" and "Ctrl s" defined in the normal mode. So a possible approach would be to unbind the keys within that mode:

keybinds {
    normal {
        unbind "Ctrl q"
        unbind "Ctrl s"
    }
}

If this works, this might be a bug, as there was a case like this in the past.
See: #2159

Another completely different approach would be to dump the default and modifying it, adding clear-defaults=true and then modifying the setting with a 'blank slate' - no unbinding necessary.
See: #1999

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@mock1328
Comment options

Answer selected by mock1328
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants