Disable Default Link Suggester Modal

Hello there,
I haven’t found this discussed anywhere. How can I disable the popup for link selection when typing [[. From the API perspective this seems to be a normal SuggestModal. Background: I want to write my own Link Selection Interface, but the default one gets in the way.
Thanks a lot :slight_smile:

Suggests is registered in app.workspace.editorSuggest.suggests, and the first element in this array is responsible for [[.
So I think you can disable the suggestions for [[ by using app.workspace.editorSuggest.suggests = app.workspace.editorSuggest.suggests.slice(1).

PixPin_2026-04-11_10-37-33

Oh wow, thanks a lot :slight_smile:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.