Keybindings
You can trigger specific lookups using custom key bindings. For example, The following keybinding will trigger lookup set to creating a journal note and turning a selection into a link.
From Keybindings
Go to text →
Dendron uses VSCode keybinding functionality to define its own keybindings.
To update your keybindings, open the command prompt and type Open Keyboard Shortcuts
.

If you prefer to work with JSON, you can use Open Keyboard Shortcuts (JSON)
.
You can read more about keybinding syntax here
{
"command": "dendron.lookup",
"key": "cmd+k j",
"args": {
"noteType": "journal",
"selectionType": "selection2link"
}
}
