|
401 | 401 | "fortran.fortls.configure": {
|
402 | 402 | "type": "string",
|
403 | 403 | "default": "",
|
404 |
| - "markdownDescription": "Filename holding additional configuration options. For more see: https://gnikit.github.io/fortls/options.html#configuration-using-a-file.", |
| 404 | + "markdownDescription": "Filename holding additional configuration options. For more see: https://fortls.fortran-lang.org/options.html#configuration-using-a-file.", |
405 | 405 | "order": 20
|
406 | 406 | },
|
407 | 407 | "fortran.fortls.notifyInit": {
|
|
440 | 440 | "type": "string"
|
441 | 441 | },
|
442 | 442 | "default": [],
|
443 |
| - "markdownDescription": "Parse additional file extensions to the default (**default**: `F,F77,F90,F95,F03,F08,FOR,FPP` (lower & upper casing)) (**fortls arg: `incl_suffixes`**). For more read the [documentation](https://gnikit.github.io/fortls/options.html#incl-suffixes).", |
| 443 | + "markdownDescription": "Parse additional file extensions to the default (**default**: `F,F77,F90,F95,F03,F08,FOR,FPP` (lower & upper casing)) (**fortls arg: `incl_suffixes`**). For more read the [documentation](https://fortls.fortran-lang.org/options.html#incl-suffixes).", |
444 | 444 | "order": 61
|
445 | 445 | },
|
446 | 446 | "fortran.fortls.directories": {
|
|
449 | 449 | "type": "string"
|
450 | 450 | },
|
451 | 451 | "default": [],
|
452 |
| - "markdownDescription": "Folders containing source files (**default: `['./**']`**), (**fortls arg: `source_dirs`**). For more read the [documentation](https://gnikit.github.io/fortls/options.html#source-dirs).", |
| 452 | + "markdownDescription": "Folders containing source files (**default: `['./**']`**), (**fortls arg: `source_dirs`**). For more read the [documentation](https://fortls.fortran-lang.org/options.html#source-dirs).", |
453 | 453 | "order": 62
|
454 | 454 | },
|
455 | 455 | "fortran.fortls.excludeSuffixes": {
|
|
458 | 458 | "type": "string"
|
459 | 459 | },
|
460 | 460 | "default": [],
|
461 |
| - "markdownDescription": "Source file extensions to be excluded (**fortls arg: `excl_suffixes`**). For more read the [documentation](https://gnikit.github.io/fortls/options.html#excl-suffixes).", |
| 461 | + "markdownDescription": "Source file extensions to be excluded (**fortls arg: `excl_suffixes`**). For more read the [documentation](https://fortls.fortran-lang.org/options.html#excl-suffixes).", |
462 | 462 | "order": 63
|
463 | 463 | },
|
464 | 464 | "fortran.fortls.excludeDirectories": {
|
|
467 | 467 | "type": "string"
|
468 | 468 | },
|
469 | 469 | "default": [],
|
470 |
| - "markdownDescription": "Folders to exclude from parsing (**fortls arg: `excl_paths`**). For more read the [documentation](https://gnikit.github.io/fortls/options.html#excl-paths).", |
| 470 | + "markdownDescription": "Folders to exclude from parsing (**fortls arg: `excl_paths`**). For more read the [documentation](https://fortls.fortran-lang.org/options.html#excl-paths).", |
471 | 471 | "order": 64
|
472 | 472 | },
|
473 | 473 | "fortran.fortls.preprocessor.suffixes": {
|
|
476 | 476 | "type": "string"
|
477 | 477 | },
|
478 | 478 | "default": [],
|
479 |
| - "markdownDescription": "File extensions to be parsed **ONLY** for preprocessor commands (**default**: all uppercase source file suffixes) (**fortls arg: `pp_suffixes`**). By default preprocessor definitions are parsed for all Fortran source files with uppercase extensions e.g. `.F90`, `.F`, `.F08`, etc.. However, the default behaviour can be overridden by defining `pp_defs`. For more read the [documentation](https://gnikit.github.io/fortls/options.html#pp-suffixes).", |
| 479 | + "markdownDescription": "File extensions to be parsed **ONLY** for preprocessor commands (**default**: all uppercase source file suffixes) (**fortls arg: `pp_suffixes`**). By default preprocessor definitions are parsed for all Fortran source files with uppercase extensions e.g. `.F90`, `.F`, `.F08`, etc.. However, the default behaviour can be overridden by defining `pp_defs`. For more read the [documentation](https://fortls.fortran-lang.org/options.html#pp-suffixes).", |
480 | 480 | "order": 65
|
481 | 481 | },
|
482 | 482 | "fortran.fortls.preprocessor.directories": {
|
|
485 | 485 | "type": "string"
|
486 | 486 | },
|
487 | 487 | "default": [],
|
488 |
| - "markdownDescription": "Folders containing preprocessor files with extensions `pp_suffixes` (**fortls arg: `include_dirs`**). Understands Python glob patterns. By default `fortls` will scan the project’s directories for files with extensions `pp_suffixes` to parse for **preprocessor definitions**. However, if the preprocessor files are external to the project, their locations can be specified via `include_dirs`. For more read the [documentation](https://gnikit.github.io/fortls/options.html#include-dirs).", |
| 488 | + "markdownDescription": "Folders containing preprocessor files with extensions `pp_suffixes` (**fortls arg: `include_dirs`**). Understands Python glob patterns. By default `fortls` will scan the project’s directories for files with extensions `pp_suffixes` to parse for **preprocessor definitions**. However, if the preprocessor files are external to the project, their locations can be specified via `include_dirs`. For more read the [documentation](https://fortls.fortran-lang.org/options.html#include-dirs).", |
489 | 489 | "order": 66
|
490 | 490 | },
|
491 | 491 | "fortran.fortls.preprocessor.definitions": {
|
492 | 492 | "type": "object",
|
493 | 493 | "additionalProperties": {
|
494 | 494 | "type": "string"
|
495 | 495 | },
|
496 |
| - "markdownDescription": "A dictionary of preprocessor definitions. (**fortls arg: `pp_defs`**). Preprocessor definitions are normally included via `include_dirs`. For more read the [documentation](https://gnikit.github.io/fortls/options.html#pp-defs).", |
| 496 | + "markdownDescription": "A dictionary of preprocessor definitions. (**fortls arg: `pp_defs`**). Preprocessor definitions are normally included via `include_dirs`. For more read the [documentation](https://fortls.fortran-lang.org/options.html#pp-defs).", |
497 | 497 | "order": 67
|
498 | 498 | },
|
499 | 499 | "fortran.fortls.disableDiagnostics": {
|
|
520 | 520 | "type": "string"
|
521 | 521 | },
|
522 | 522 | "default": [],
|
523 |
| - "markdownDescription": "Additional arguments for the `fortls`. For more see: https://gnikit.github.io/fortls/options.html#configuration-using-the-command-line", |
| 523 | + "markdownDescription": "Additional arguments for the `fortls`. For more see: https://fortls.fortran-lang.org/options.html#configuration-using-the-command-line", |
524 | 524 | "order": 110
|
525 | 525 | },
|
526 | 526 | "fortran.fortls.disableAutoupdate": {
|
|
0 commit comments