config.edn format does not seem to allow spaces in its keys.
This definition:
|
key: 'Toggle Smartblock Inserter', |
leads to this entry in config.edn:
:shortcuts {
:plugin.logseq-smartblocks/Toggle Smartblock Inserter ["ctrl+b"]
}
when one tries to change the shortcut in the keymap ui. This fails to parse.
In effect, it is impossible to change these shortcuts, which makes it harder to disentangle shortcut conflicts (which are especially common on ctrl+t, the default.
Could you modify the command keys and replace spaces with an allowed character, such as - or _?
config.edn format does not seem to allow spaces in its keys.
This definition:
logseq-smartblocks/src/index.tsx
Line 141 in 2a787c3
leads to this entry in config.edn:
when one tries to change the shortcut in the keymap ui. This fails to parse.
In effect, it is impossible to change these shortcuts, which makes it harder to disentangle shortcut conflicts (which are especially common on ctrl+t, the default.
Could you modify the command keys and replace spaces with an allowed character, such as
-or_?