For obscure reasons (I’m using a custom keyboard layout which remap these to < and >), I need Alt+K and Alt+L (resp. Option+K and Option+L on Mac) to not be a shortcut.
In v1, I could use the following config to disable those shortcuts:
Is there another way to remove an existing default keybinding? If not, can we add one please? (EIBTI, so I’d suggest config.delete(keybinding) or something along those lines)
Context:
Version: v2-edge
Release date: 2025-07-26
OS: Windows + Docker
Scripts: None / New space
Edit:
After posting, I was looking through the libraries for other reasons, and found the following page: Library/Std/Command which includes a command.update() function.
I am able to achieve what I want using this script:
command.update {
name = "Outline: Move Up",
key = nil,
mac = nil,
}
command.update {
name = "Outline: Move Down",
key = nil,
mac = nil,
}