Tab to autocomplete?
Closed this issue · 2 comments
wazeerc commented
Is there a way to trigger an autocomplete by using "Tab" instead of "Enter"?
linuswalter commented
Yes. It doesn't work via the official Obsidain Hotkey window, but you can open the .obsidian/hotkeys.json
file and search for the line
"obsidian-completr:completr-insert-selected-suggestion": [
{
"modifiers": [],
"key": "Enter"
}
],
And just insert Tab
instead of Enter
. For me it worked
wazeerc commented
Thanks @linuswalter !