We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd1f0be commit 56ad4c5Copy full SHA for 56ad4c5
packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/NotebookCellScopeHandler.ts
@@ -122,8 +122,9 @@ function createTargetScope(cell: NotebookCell): TargetScope {
122
}
123
124
function getEditor(cell: NotebookCell) {
125
+ const uri = cell.document.uri.toString();
126
for (const editor of ide().visibleTextEditors) {
- if (editor.document.uri.toString() === cell.document.uri.toString()) {
127
+ if (editor.document.uri.toString() === uri) {
128
return editor;
129
130
0 commit comments