Skip to content

Commit 246f8e3

Browse files
committed
Edit deprecation messages and drop support for Gimly81.fortran
1 parent e12fc49 commit 246f8e3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/extension.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)