chore[client]: enable obsidian omnisearch keybind

This commit is contained in:
Leon Schwarzäugl 2025-10-21 20:19:57 +02:00
parent 41240db5c9
commit baf7580e99
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 154 additions and 128 deletions

View file

@ -14558,6 +14558,19 @@ This service changes the screen hue at night. I am not sure if that really does
vimMode = false; vimMode = false;
newFileLocation = "current"; newFileLocation = "current";
}; };
hotkeys = {
"graph:open" = [ ];
"omnisearch:show-modal" = [
{
modifiers = [
"Mod"
];
key = "S";
}
];
"editor:save-file" = [ ];
"editor:delete-paragraph" = [ ];
};
corePlugins = [ corePlugins = [
"backlink" "backlink"
"bookmarks" "bookmarks"

View file

@ -27,6 +27,19 @@ in
vimMode = false; vimMode = false;
newFileLocation = "current"; newFileLocation = "current";
}; };
hotkeys = {
"graph:open" = [ ];
"omnisearch:show-modal" = [
{
modifiers = [
"Mod"
];
key = "S";
}
];
"editor:save-file" = [ ];
"editor:delete-paragraph" = [ ];
};
corePlugins = [ corePlugins = [
"backlink" "backlink"
"bookmarks" "bookmarks"