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() {
127127 vscode . window . showWarningMessage (
128128 `Modern Fortran is not compatible with FORTRAN Intellisense.
129129 Language Server integration is handled in Modern Fortran now.
130- Please Disable FORTRAN Intellisense.`
130+ Please Disable/Uninstall: FORTRAN Intellisense.`
131131 ) ;
132132 }
133133 if ( vscode . extensions . getExtension ( 'ekibun.fortranbreaker' ) ) {
134134 vscode . window
135135 . showWarningMessage ( `Modern Fortran is not compatible with Fortran Breakpoint Support.
136136 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.` ) ;
138143 }
139144}
You can’t perform that action at this time.
0 commit comments