open-quick-navigation
Type: Operation
This operation allows you to open quick navigation modal.
Overriding the keybinding
The default key bindings for the quick navigation are ctrl+g / cmd+g. But they can be changed as below:
-
Create a new operation with new key bindings. Only step is
operation/open-quick-navigation
and there is no need to any param. -
In order to override or disable ctrl+g / cmd+g, create another operation with ctrl+g / cmd+ g key bindings. Only step is operation/do-nothing and there is no need to any param.
Other
{
"handle-quick-navigation-keybindings": {
"keyBinding": "ctrl+p",
"osxKeyBinding": "cmd+p",
"steps": [
{
"type":"operation/open-quick-navigation",
}
]
},
"override-ctrl-g-cmd-g": {
"keyBinding": "ctrl+g",
"osxKeyBinding": "cmd+g",
"steps": [
{
"type":"operation/do-nothing",
}
]
}
}
Label | Quick navigation |
---|---|
Tooltip | Open the quick navigation modal. |
Icon | compass |
Key binding | ctrl + g or cmd + g |