()
| 2924 | } |
| 2925 | |
| 2926 | function reapplyActiveFile() { |
| 2927 | const file = manager.activeFile; |
| 2928 | if (!file || file.type !== "editor" || !file.loaded || file.loading) return; |
| 2929 | applyFileToEditor(file, { forceRecreate: true }); |
| 2930 | } |
| 2931 | |
| 2932 | /** |
| 2933 | * Initializes the file tab container. |
nothing calls this directly
no test coverage detected