()
| 2240 | } |
| 2241 | |
| 2242 | function syncOpenFileList() { |
| 2243 | const $list = manager.openFileList; |
| 2244 | manager.files.forEach((file) => { |
| 2245 | $list.append(file.tab); |
| 2246 | }); |
| 2247 | } |
| 2248 | |
| 2249 | function moveFileByPinnedState(file) { |
| 2250 | if (!manager.files.includes(file)) return; |
no test coverage detected