-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
How can I unmap tab? #179
Labels
Comments
Ahh, it was add recently. Yeah, we should add reconfiguration. |
Hello what's the state of this |
I nearly done #110 after I will do this. Should be easy. Sorry, I was inactive long-time only now recovering. |
Merged
Can you guys try #211 . Add to ...
['tab'] = {
map = 'gn',
cmd = "<cmd>lua require('spectre').tab()<cr>",
desc = 'next query'
},
['shift-tab'] = {
map = 'gp',
cmd = "<cmd>lua require('spectre').tab_shift()<cr>",
desc = 'previous query'
},
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use the tab keymap for something else and would like to unmap it from Spectre but couldn't figure out how.
I tried to follow the documentation for other mappings and just replaced the example with "tab" instead, but it didn't seem to work.
This is what I tried to remap it off of <Tab> and into <S-Tab>
mapping = { ["tab"] = { map = "<S-Tab>", cmd = "<cmd>lua require('spectre').tab()<cr>", } }
The text was updated successfully, but these errors were encountered: