You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command to show references is already registered by id textEditor.commands.showReferences. But plugins know nothing about textEditor.commands.showReferences id, they use editor.action.showReferences to show references.
To make it possible to execute editor.action.showReferences from the plugin and don't break existing clients we need to delegate editor.action.showReferences to existing textEditor.commands.showReferences command in plugin-ext-vscode.
The text was updated successfully, but these errors were encountered:
The command to show references is already registered by id
textEditor.commands.showReferences
. But plugins know nothing abouttextEditor.commands.showReferences
id, they useeditor.action.showReferences
to show references.To make it possible to execute
editor.action.showReferences
from the plugin and don't break existing clients we need to delegateeditor.action.showReferences
to existingtextEditor.commands.showReferences
command in plugin-ext-vscode.The text was updated successfully, but these errors were encountered: