fixed keybinding presedence issue
This commit is contained in:
parent
6fe11be218
commit
d645cc6fe5
1 changed files with 1 additions and 2 deletions
|
|
@ -26,6 +26,5 @@ const keymaps = {
|
||||||
|
|
||||||
export function keybindings(name) {
|
export function keybindings(name) {
|
||||||
const active = keymaps[name];
|
const active = keymaps[name];
|
||||||
return [keymap.of(defaultKeymap), keymap.of(historyKeymap), active ? active() : []];
|
return [active ? active() : [], keymap.of(historyKeymap), keymap.of(defaultKeymap)];
|
||||||
// keymap.of(searchKeymap),
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue