removed duplication and unnecessary keymappings in codemirror config

This commit is contained in:
Dsm0 2025-07-16 15:17:34 -07:00
parent 06fafbd8eb
commit 5448fc6077
3 changed files with 10 additions and 11 deletions

View file

@ -28,5 +28,5 @@ const keymaps = {
export function keybindings(name) {
const active = keymaps[name];
return [active ? active() : []];
return [active ? Prec.high(active()) : []];
}