(file)
| 1420 | } |
| 1421 | |
| 1422 | function scheduleLspForFile(file) { |
| 1423 | const fileId = file?.id; |
| 1424 | window.setTimeout(() => { |
| 1425 | if (!fileId || manager.activeFile?.id !== fileId) return; |
| 1426 | void configureLspForFile(file); |
| 1427 | }, 80); |
| 1428 | } |
| 1429 | |
| 1430 | function applyCurrentEditorOptions(file, { forceOptions = false } = {}) { |
| 1431 | touchSelectionController?.onSessionChanged(); |
no test coverage detected