We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5c808a + 7fd9374 commit 614e0c6Copy full SHA for 614e0c6
src/lsp/client.ts
@@ -223,7 +223,8 @@ export class FortlsClient {
223
args.push(`--max_comment_line_length=${maxCommentLineLength}`);
224
}
225
if (fortlsExtraArgs.length > 0) {
226
- args.push(...fortlsExtraArgs);
+ const filteredfortlsExtraArgs = fortlsExtraArgs.filter(item => item.trim().length > 0);
227
+ args.push(...filteredfortlsExtraArgs);
228
229
230
// Fortran source file parsing
0 commit comments