You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CodeChecker analysis can be slow (1-2 minutes). It would be good if we could show a pop-up window to inform the user when the analysis finished. We can show this pop-up window only when we found new results.
Also if started to analyze a file and the analysis is still in progress we can add a decoration to the analyzed file by using FileDecorations:
Example code to provide file decorations
exportclassCodeCheckerFileDecorationProviderimplementsFileDecorationProvider{constructor(ctx: ExtensionContext){ctx.subscriptions.push(window.registerFileDecorationProvider(this));}provideFileDecoration(uri: Uri,token: CancellationToken){returnnewFileDecoration("CC","CodeChecker analysis in progress",newThemeColor('progressBar.background'));}}
The text was updated successfully, but these errors were encountered:
CodeChecker analysis can be slow (1-2 minutes). It would be good if we could show a pop-up window to inform the user when the analysis finished. We can show this pop-up window only when we found new results.
Also if started to analyze a file and the analysis is still in progress we can add a decoration to the analyzed file by using
FileDecoration
s:Example code to provide file decorations
The text was updated successfully, but these errors were encountered: