Skip to content

Commit b7a0c4b

Browse files
committed
chore: fix busy signal for setOutline
1 parent 91869e8 commit b7a0c4b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/main.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,8 @@ export async function getOutline(editor = atom.workspace.getActiveTextEditor())
165165
return setStatus("noProvider")
166166
}
167167

168-
// const target = editor.getPath()
169-
170-
// const busySignalID = `Outline: ${target}`
171-
// // @ts-ignore
172-
// busySignalProvider?.add(busySignalID, { onlyForFile: target })
168+
// const busySignalID = `Outline: ${editor.getPath()}`
169+
// busySignalProvider?.add(busySignalID)
173170

174171
const outline = await provider.getOutline(editor)
175172
view.setOutline(outline?.outlineTrees ?? [], editor, Boolean(editorLargeness(editor as TextEditor)))

0 commit comments

Comments
 (0)