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 91869e8 commit b7a0c4bCopy full SHA for b7a0c4b
src/main.ts
@@ -165,11 +165,8 @@ export async function getOutline(editor = atom.workspace.getActiveTextEditor())
165
return setStatus("noProvider")
166
}
167
168
- // const target = editor.getPath()
169
-
170
- // const busySignalID = `Outline: ${target}`
171
- // // @ts-ignore
172
- // busySignalProvider?.add(busySignalID, { onlyForFile: target })
+ // const busySignalID = `Outline: ${editor.getPath()}`
+ // busySignalProvider?.add(busySignalID)
173
174
const outline = await provider.getOutline(editor)
175
view.setOutline(outline?.outlineTrees ?? [], editor, Boolean(editorLargeness(editor as TextEditor)))
0 commit comments