File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -127,13 +127,18 @@ function detectDeprecatedOptions() {
127
127
vscode . window . showWarningMessage (
128
128
`Modern Fortran is not compatible with FORTRAN Intellisense.
129
129
Language Server integration is handled in Modern Fortran now.
130
- Please Disable FORTRAN Intellisense.`
130
+ Please Disable/Uninstall: FORTRAN Intellisense.`
131
131
) ;
132
132
}
133
133
if ( vscode . extensions . getExtension ( 'ekibun.fortranbreaker' ) ) {
134
134
vscode . window
135
135
. showWarningMessage ( `Modern Fortran is not compatible with Fortran Breakpoint Support.
136
136
Breakpoint support is handled natively in Modern Fortran.
137
- Please Disable Fortran Breakpoint Support.` ) ;
137
+ Please Disable/Uninstall: Fortran Breakpoint Support.` ) ;
138
+ }
139
+ if ( vscode . extensions . getExtension ( 'Gimly81.fortran' ) ) {
140
+ vscode . window . showWarningMessage ( `Modern Fortran is not compatible with extension: fortran.
141
+ Both extensions provide syntax highlighting for Fortran and should not be used simultaneously.
142
+ Please Disable/Uninstall extension: fortran.` ) ;
138
143
}
139
144
}
You can’t perform that action at this time.
0 commit comments