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 ![]()
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).

Oh wow, thanks a lot ![]()
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.