()
| 486 | |
| 487 | // 保存用户偏好 |
| 488 | function savePreferences() { |
| 489 | try { |
| 490 | fs.writeFileSync(prefsPath, JSON.stringify(userPreferences, null, 2)) |
| 491 | } catch (err) { |
| 492 | console.error('Failed to save preferences:', err) |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | function getRecentProjectsForMenu() { |
| 497 | try { |
no outgoing calls
no test coverage detected