(view)
| 1575 | } |
| 1576 | |
| 1577 | export async function setKeyBindings(view) { |
| 1578 | await loadCustomKeyBindings(); |
| 1579 | const bindings = rebuildKeymap(); |
| 1580 | const resolvedView = resolveView(view); |
| 1581 | applyCommandKeymap(resolvedView, bindings); |
| 1582 | } |
| 1583 | |
| 1584 | async function loadCustomKeyBindings() { |
| 1585 | try { |
no test coverage detected