@@ -41,7 +41,11 @@ import { ExamplesPlanel } from "./examples/ExamplesPanel";
41
41
import * as idfConf from "./idfConfiguration" ;
42
42
import { Logger } from "./logger/logger" ;
43
43
import { OutputChannel } from "./logger/outputChannel" ;
44
- import { showInfoNotificationWithAction , showInfoNotificationWithMultipleActions , showQuickPickWithCustomActions } from "./logger/utils" ;
44
+ import {
45
+ showInfoNotificationWithAction ,
46
+ showInfoNotificationWithMultipleActions ,
47
+ showQuickPickWithCustomActions ,
48
+ } from "./logger/utils" ;
45
49
import * as utils from "./utils" ;
46
50
import { PreCheck } from "./utils" ;
47
51
import {
@@ -158,7 +162,11 @@ import { checkDebugAdapterRequirements } from "./espIdf/debugAdapter/checkPyReqs
158
162
import { CDTDebugConfigurationProvider } from "./cdtDebugAdapter/debugConfProvider" ;
159
163
import { CDTDebugAdapterDescriptorFactory } from "./cdtDebugAdapter/server" ;
160
164
import { IdfReconfigureTask } from "./espIdf/reconfigure/task" ;
161
- import { ErrorHintProvider , ErrorHintTreeItem , HintHoverProvider } from "./espIdf/hints/index" ;
165
+ import {
166
+ ErrorHintProvider ,
167
+ ErrorHintTreeItem ,
168
+ HintHoverProvider ,
169
+ } from "./espIdf/hints/index" ;
162
170
import { installWebsocketClient } from "./espIdf/monitor/checkWebsocketClient" ;
163
171
import { TroubleshootingPanel } from "./support/troubleshootPanel" ;
164
172
import {
@@ -277,7 +285,7 @@ export async function activate(context: vscode.ExtensionContext) {
277
285
) ;
278
286
} ;
279
287
// Store display hints notification (until VS Code is closed)
280
- context . workspaceState . update ( ' idf.showHintsNotification' , true ) ;
288
+ context . workspaceState . update ( " idf.showHintsNotification" , true ) ;
281
289
282
290
// init rainmaker cache store
283
291
ESP . Rainmaker . store = RainmakerStore . init ( context ) ;
@@ -3689,43 +3697,49 @@ export async function activate(context: vscode.ExtensionContext) {
3689
3697
}
3690
3698
// Hints Viewer
3691
3699
const treeDataProvider = new ErrorHintProvider ( context ) ;
3692
-
3700
+
3693
3701
// Create and register the tree view with collapse all button
3694
3702
const treeView = vscode . window . createTreeView ( "idfErrorHints" , {
3695
3703
treeDataProvider : treeDataProvider ,
3696
- showCollapseAll : true
3704
+ showCollapseAll : true ,
3697
3705
} ) ;
3698
-
3706
+
3699
3707
// Set a title for the tree view
3700
3708
treeView . title = "Error Hints" ;
3701
-
3709
+
3702
3710
// Add the tree view to disposables
3703
3711
context . subscriptions . push ( treeView ) ;
3704
-
3712
+
3705
3713
// Register commands for clearing error hints
3706
- vscode . commands . registerCommand ( "espIdf.errorHints.clearAll" , ( ) => {
3707
- treeDataProvider . clearErrorHints ( true ) ; // Clear both build and OpenOCD errors
3708
- } )
3709
-
3710
- vscode . commands . registerCommand ( "espIdf.errorHints.clearBuildErrors" , ( ) => {
3711
- treeDataProvider . clearErrorHints ( false ) ; // Clear only build errors
3712
- } )
3713
-
3714
- vscode . commands . registerCommand ( "espIdf.errorHints.clearOpenOCDErrors" , ( ) => {
3714
+ vscode . commands . registerCommand ( "espIdf.errorHints.clearAll" , ( ) => {
3715
+ treeDataProvider . clearErrorHints ( true ) ; // Clear both build and OpenOCD errors
3716
+ } ) ;
3717
+
3718
+ vscode . commands . registerCommand ( "espIdf.errorHints.clearBuildErrors" , ( ) => {
3719
+ treeDataProvider . clearErrorHints ( false ) ; // Clear only build errors
3720
+ } ) ;
3721
+
3722
+ vscode . commands . registerCommand (
3723
+ "espIdf.errorHints.clearOpenOCDErrors" ,
3724
+ ( ) => {
3715
3725
treeDataProvider . clearOpenOCDErrorsOnly ( ) ; // Clear only OpenOCD errors
3716
- } )
3717
-
3726
+ }
3727
+ ) ;
3728
+
3718
3729
// Initialize OpenOCD error monitoring
3719
- const openOCDErrorMonitor = OpenOCDErrorMonitor . init ( treeDataProvider , workspaceRoot ) ;
3730
+ const openOCDErrorMonitor = OpenOCDErrorMonitor . init (
3731
+ treeDataProvider ,
3732
+ workspaceRoot
3733
+ ) ;
3720
3734
await openOCDErrorMonitor . initialize ( ) ;
3721
-
3735
+
3722
3736
// Register disposal of the monitor
3723
3737
context . subscriptions . push ( {
3724
3738
dispose : ( ) => {
3725
3739
openOCDErrorMonitor . dispose ( ) ;
3726
- }
3740
+ } ,
3727
3741
} ) ;
3728
-
3742
+
3729
3743
// Register command to manually search for errors
3730
3744
vscode . commands . registerCommand ( "espIdf.searchError" , async ( ) => {
3731
3745
const errorMsg = await vscode . window . showInputBox ( {
@@ -3740,45 +3754,59 @@ export async function activate(context: vscode.ExtensionContext) {
3740
3754
// Function to process all ESP-IDF diagnostics from the problems panel
3741
3755
const processEspIdfDiagnostics = async ( ) => {
3742
3756
// Get all diagnostics from all files that have source "esp-idf"
3743
- const espIdfDiagnostics : Array < { uri : vscode . Uri ; diagnostic : vscode . Diagnostic } > = [ ] ;
3744
-
3757
+ const espIdfDiagnostics : Array < {
3758
+ uri : vscode . Uri ;
3759
+ diagnostic : vscode . Diagnostic ;
3760
+ } > = [ ] ;
3761
+
3745
3762
// Collect all diagnostics from all files that have source "esp-idf"
3746
3763
vscode . languages . getDiagnostics ( ) . forEach ( ( [ uri , diagnostics ] ) => {
3747
3764
diagnostics
3748
- . filter ( d => d . source === "esp-idf" && d . severity === vscode . DiagnosticSeverity . Error )
3749
- . forEach ( diagnostic => {
3765
+ . filter (
3766
+ ( d ) =>
3767
+ d . source === "esp-idf" &&
3768
+ d . severity === vscode . DiagnosticSeverity . Error
3769
+ )
3770
+ . forEach ( ( diagnostic ) => {
3750
3771
espIdfDiagnostics . push ( { uri, diagnostic } ) ;
3751
3772
} ) ;
3752
3773
} ) ;
3753
-
3774
+
3754
3775
// Only clear build errors if no ESP-IDF diagnostics
3755
3776
if ( espIdfDiagnostics . length === 0 ) {
3756
3777
treeDataProvider . clearErrorHints ( false ) ; // Don't clear OpenOCD errors
3757
3778
return ;
3758
3779
}
3759
-
3780
+
3760
3781
// Process the first error if available
3761
3782
const errorMsg = espIdfDiagnostics [ 0 ] . diagnostic . message ;
3762
- const foundHint = await treeDataProvider . searchError ( errorMsg , workspaceRoot ) ;
3783
+ const foundHint = await treeDataProvider . searchError (
3784
+ errorMsg ,
3785
+ workspaceRoot
3786
+ ) ;
3763
3787
3764
- const showHintsNotification = context . workspaceState . get ( 'idf.showHintsNotification' )
3788
+ const showHintsNotification = context . workspaceState . get (
3789
+ "idf.showHintsNotification"
3790
+ ) ;
3765
3791
if ( foundHint && showHintsNotification ) {
3766
3792
const actions = [
3767
3793
{
3768
3794
label : vscode . l10n . t ( "💡 Show Hints" ) ,
3769
- action : ( ) => vscode . commands . executeCommand ( "idfErrorHints.focus" )
3795
+ action : ( ) => vscode . commands . executeCommand ( "idfErrorHints.focus" ) ,
3770
3796
} ,
3771
3797
{
3772
3798
label : vscode . l10n . t ( "Mute for this session" ) ,
3773
3799
action : ( ) => {
3774
- context . workspaceState . update ( ' idf.showHintsNotification' , false ) ;
3800
+ context . workspaceState . update ( " idf.showHintsNotification" , false ) ;
3775
3801
vscode . window . showInformationMessage (
3776
- vscode . l10n . t ( "Hint notifications muted for this session. You can still access hints manually in ESP-IDF bottom panel" )
3802
+ vscode . l10n . t (
3803
+ "Hint notifications muted for this session. You can still access hints manually in ESP-IDF bottom panel"
3804
+ )
3777
3805
) ;
3778
- }
3779
- }
3806
+ } ,
3807
+ } ,
3780
3808
] ;
3781
-
3809
+
3782
3810
await showInfoNotificationWithMultipleActions (
3783
3811
vscode . l10n . t ( `Possible hint found for the error: {0}` , errorMsg ) ,
3784
3812
actions
@@ -3787,9 +3815,9 @@ export async function activate(context: vscode.ExtensionContext) {
3787
3815
} ;
3788
3816
3789
3817
// Attach a listener to the diagnostics collection
3790
- vscode . languages . onDidChangeDiagnostics ( ( _event ) => {
3791
- processEspIdfDiagnostics ( ) ;
3792
- } )
3818
+ vscode . languages . onDidChangeDiagnostics ( ( _event ) => {
3819
+ processEspIdfDiagnostics ( ) ;
3820
+ } ) ;
3793
3821
3794
3822
// Register the HintHoverProvider
3795
3823
context . subscriptions . push (
@@ -4019,7 +4047,7 @@ function registerTreeProvidersForIDFExplorer(context: vscode.ExtensionContext) {
4019
4047
commandTreeDataProvider . registerDataProviderForTree ( "idfCommands" ) ,
4020
4048
rainMakerTreeDataProvider . registerDataProviderForTree ( "espRainmaker" ) ,
4021
4049
eFuseExplorer . registerDataProviderForTree ( "espEFuseExplorer" ) ,
4022
- partitionTableTreeDataProvider . registerDataProvider ( "idfPartitionExplorer" ) ,
4050
+ partitionTableTreeDataProvider . registerDataProvider ( "idfPartitionExplorer" )
4023
4051
) ;
4024
4052
}
4025
4053
0 commit comments