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

Can't SelectPrevTab in breadcrumb navigation mode #547

Open
boringplay opened this issue Jun 14, 2024 · 2 comments
Open

Can't SelectPrevTab in breadcrumb navigation mode #547

boringplay opened this issue Jun 14, 2024 · 2 comments

Comments

@boringplay
Copy link

boringplay commented Jun 14, 2024

cmd+shift+[ doesn't select prev tab in breadcrumb navigation mode. Even if I add specific key bindings, it still doesn't work

[navigation]
mode = "Breadcrumb"
clickable = true

[bindings]
keys = [
    { key = "[", with = "super | shift", action = "SelectPrevTab" },
    { key = "]", with = "super | shift", action = "SelectNextTab" },
]

Mac OS

@MrPandir
Copy link

@boringplay you missed the [bindings] line before keys.
I encountered this problem, to fix it you need to enter the characters as if they were pressed with shift:

[bindings]
keys = [
    { key = "{", with = "super | shift", action = "SelectPrevTab" },
    { key = "}", with = "super | shift", action = "SelectNextTab" },
]

@boringplay
Copy link
Author

Sorry. Actually, it has [bindings] line. I forgot to paste it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants