Hey there,
I’m still new to the Lua stuff, so I’m still a bit lost where to find what.
My issue at hand is, I installed Silversearch via the Library Manager. Put something like:
config.set {
mobileMenuStyle = 'bottom-bar', --'bottom-bar' or 'hamburger'
actionButtons = {
{
icon = 'md-link',
description = 'Link',
mobile = true,
run = function()
local pos = editor.getCursor()
editor.insertAtCursor('[[]]', true)
editor.moveCursor(pos + 2,false)
end
},
{
icon = 'home',
description = 'Go to the index page',
run = function()
editor.invokeCommand('Navigate: Home')
end
},
{
icon = 'book',
description = 'Open Page',
run = function()
editor.invokeCommand('Navigate: Page Picker')
end
},
{
icon = 'search',
description = 'Search for words in space',
run = function()
editor.invokeCommand('Silversearch: Search')
end
},
{
icon = 'terminal',
description = 'Run command',
run = function()
editor.invokeCommand('Open Command Palette')
end
}
}
}
in my CONFIG and now I’m getting:
every time I’m trying to do the Silversearch. Anyway, can’t find the Silversearch search command in the Run: Command dialogue neither. Tried to define it but to no help.
Also I get an error when I’m trying to uninstall the library now:
Which suggest the library didn’t install. However the Library/mrmugame/Silversearch file exists.
And than the Update doesn’t do nothing. Just says “Update complete”.
The silverbullet-math library I installed just fine, no issues there.
I’d appreciate any help, I’m fairly new to coding with browsers, so wouldn’t know how to debug using the console. ![]()

