()
| 154 | |
| 155 | /** Called when the user picks "don't show plugin installation hints again". */ |
| 156 | export function disableHintRecommendations(): void { |
| 157 | saveGlobalConfig(current => { |
| 158 | if (current.claudeCodeHints?.disabled) return current |
| 159 | return { |
| 160 | ...current, |
| 161 | claudeCodeHints: { ...current.claudeCodeHints, disabled: true }, |
| 162 | } |
| 163 | }) |
| 164 | } |
| 165 |
no test coverage detected