I am trying to do something similar in disabling the Outline Up/Down shortcuts. My config has the following script:
config.set {
plugs = {
-- Add your plugs here (https://silverbullet.md/Plugs)
-- Then run the `Plugs: Update` command to update them
},
shortcuts = {
{
command = "Outline: Move Up",
key = "",
mac = ""
},
{
command = "Outline: Move Down",
key = "",
mac = ""
}
}
}
But after reloading, the shortcuts still remain unchanged.
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,
}
