@@ -9,6 +9,7 @@ import { FortranDocumentSelector, resolveVariables } from '../lib/tools';
9
9
import * as fg from 'fast-glob' ;
10
10
import { glob } from 'glob' ;
11
11
import { arraysEqual } from '../lib/helper' ;
12
+ import { RescanLint } from './commands' ;
12
13
13
14
export class FortranLintingProvider {
14
15
constructor ( private logger : LoggingService = new LoggingService ( ) ) { }
@@ -28,6 +29,10 @@ export class FortranLintingProvider {
28
29
}
29
30
30
31
public async activate ( subscriptions : vscode . Disposable [ ] ) {
32
+ // Register Linter commands
33
+ subscriptions . push ( vscode . commands . registerCommand ( RescanLint , this . rescanLinter , this ) ) ;
34
+
35
+ // Register the Linter provider
31
36
this . diagnosticCollection = vscode . languages . createDiagnosticCollection ( 'Fortran' ) ;
32
37
33
38
vscode . workspace . onDidOpenTextDocument ( this . doModernFortranLint , this , subscriptions ) ;
@@ -48,7 +53,6 @@ export class FortranLintingProvider {
48
53
public dispose ( ) : void {
49
54
this . diagnosticCollection . clear ( ) ;
50
55
this . diagnosticCollection . dispose ( ) ;
51
- // this.command.dispose();
52
56
}
53
57
54
58
private doModernFortranLint ( textDocument : vscode . TextDocument ) {
@@ -166,6 +170,10 @@ export class FortranLintingProvider {
166
170
167
171
// Check if we can use the cached results for the include directories no
168
172
// need to evaluate the glob patterns everytime we call the linter
173
+ // TODO: register command that forces re-linting
174
+ // Not sure what the best approach for this one is?
175
+ // Should I add a watcher to all the files under globIncPaths?
176
+ // Should I add a watcher on the files under the workspace?
169
177
if ( arraysEqual ( includePaths , this . cache [ 'includePaths' ] ) ) {
170
178
return this . cache [ 'globIncPaths' ] ;
171
179
}
@@ -446,4 +454,12 @@ export class FortranLintingProvider {
446
454
break ;
447
455
}
448
456
}
457
+
458
+ /**
459
+ * Regenerate the cache for the include files paths of the linter
460
+ */
461
+ private rescanLinter ( ) {
462
+ this . cache [ 'includePaths' ] = [ ] ;
463
+ this . getIncludePaths ( ) ;
464
+ }
449
465
}
0 commit comments