This commit is contained in:
Logan Ramos
2021-10-25 10:27:27 -04:00
parent 910511b9bd
commit 286606327d

View File

@@ -702,7 +702,7 @@ export class CommandCenter {
const document = window.activeTextEditor?.document;
// If the document doesn't match what we opened then don't attempt to select the range
if (document?.uri !== uri) {
if (document?.uri.toString() !== uri.toString()) {
continue;
}