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.
1 parent 81c5707 commit 1823929Copy full SHA for 1823929
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