|
1 | 1 | <p align="center">
|
2 |
| - <img src="assets/modern-fortran-logo.svg" width=800/> |
| 2 | + <img src="assets/png/modern-fortran-logo.png" width=800/> |
3 | 3 | </p>
|
4 | 4 |
|
5 | 5 | <div align="center">
|
|
12 | 12 |
|
13 | 13 | </div>
|
14 | 14 |
|
| 15 | +<div align="center"> |
| 16 | + <a href="#key-features">Key Features</a> • |
| 17 | + <a href="#get-started--seek-support">Get Started</a> • |
| 18 | + <a href="#language-server-integration">LSP</a> • |
| 19 | + <a href="#linting">Lint</a> • |
| 20 | + <a href="#debugging">Debug</a> • |
| 21 | + <a href="#formatting">Format</a> • |
| 22 | + <a href="#snippets">Snippets</a> • |
| 23 | + <a href="#support-us">Donate</a> |
| 24 | + <br> |
| 25 | + <br> |
| 26 | +</div> |
| 27 | + |
15 | 28 | <p align="center">
|
16 |
| - <img src="assets/intro-demo.gif"/> |
| 29 | + <img src="assets/gif/intro-demo.gif"/> |
17 | 30 | </p>
|
18 | 31 |
|
19 | 32 | ## Key Features
|
|
30 | 43 |
|
31 | 44 | ## Get Started & Seek Support
|
32 | 45 |
|
33 |
| -<p float="left"> |
34 |
| - <a href="https://fortran-lang.org/learn/"><img src="./assets/readme.tutorial.svg"/></a> |
35 |
| - <a href="https://github.com/fortran-lang/vscode-fortran-support/discussions"><img src="./assets/readme.github.svg"/></a> |
36 |
| - <a href="https://fortran-lang.discourse.group/"><img src="./assets/readme.discourse.svg"/></a> |
| 46 | +<p float="center"> |
| 47 | + <a href="https://fortran-lang.org/learn/"><img src="assets/png/readme.tutorial.png"/></a> |
| 48 | + <a href="https://github.com/fortran-lang/vscode-fortran-support/discussions"><img src="assets/png/readme.github.png"/></a> |
| 49 | + <a href="https://fortran-lang.discourse.group/"><img src="assets/png/readme.discourse.png"/></a> |
37 | 50 | </p>
|
38 | 51 |
|
39 | 52 | ### Useful Tools
|
40 | 53 |
|
41 | 54 | <p float="center">
|
42 |
| - <a href="https://gnikit.github.io/fortls"><img src="./assets/readme.fortls.svg"/></a> |
43 |
| - <a href="https://fpm.fortran-lang.org"><img src="./assets/readme.fpm.svg"/></a> |
44 |
| - <a href="https://github.com/fortran-lang/stdlib"><img src="./assets/readme.stdlib.svg"/></a> |
| 55 | + <a href="https://gnikit.github.io/fortls"><img src="assets/png/readme.fortls.png"/></a> |
| 56 | + <a href="https://fpm.fortran-lang.org"><img src="assets/png/readme.fpm.png"/></a> |
| 57 | + <a href="https://github.com/fortran-lang/stdlib"><img src="assets/png/readme.stdlib.png"/></a> |
45 | 58 | </p>
|
46 | 59 |
|
47 | 60 | ## Language Server integration
|
@@ -70,35 +83,32 @@ without the user having to compile.
|
70 | 83 |
|
71 | 84 | Using an invalid if expression
|
72 | 85 |
|
73 |
| - |
| 86 | + |
74 | 87 |
|
75 | 88 | Using incorrect type and rank as function argument
|
76 | 89 |
|
77 |
| - |
| 90 | + |
78 | 91 |
|
79 |
| -| 📝️ Note | |
80 |
| -| ------------------------------------------ | |
81 |
| -| Save your file to generate linting results | |
| 92 | +| 📝️ Note | Save your file to generate linting results | |
| 93 | +| -------- | ------------------------------------------ | |
82 | 94 |
|
83 | 95 | Linting results can be improved by providing additional options to the compiler.
|
84 | 96 |
|
85 | 97 | ### Including directories
|
86 | 98 |
|
87 | 99 | You can control the include paths to be used by the linter with the `fortran.linter.includePaths` option.
|
88 | 100 |
|
89 |
| -| ❗️ Important | |
90 |
| -| ------------------------------------------------------------------------------------------------------------------ | |
91 |
| -| For the best linting results `linter.includePaths` should match the included paths for your project's compilation. | |
| 101 | +| ❗️ Important | For the best linting results `linter.includePaths` should match the included paths for your project's compilation. | |
| 102 | +| ------------- | ------------------------------------------------------------------------------------------------------------------ | |
92 | 103 |
|
93 | 104 | ```json
|
94 | 105 | {
|
95 | 106 | "fortran.linter.includePaths": ["/usr/include/**", "${workspaceFolder}/include/**"]
|
96 | 107 | }
|
97 | 108 | ```
|
98 | 109 |
|
99 |
| -| ❗️ Important | |
100 |
| -| -------------------------------------------------------------------------------- | |
101 |
| -| If a glob pattern is used only directories matching the pattern will be included | |
| 110 | +| ❗️ Important | If a glob pattern is used only directories matching the pattern will be included | |
| 111 | +| ------------- | -------------------------------------------------------------------------------- | |
102 | 112 |
|
103 | 113 | ### Additional linting options
|
104 | 114 |
|
@@ -140,7 +150,7 @@ you can point the extension to another linter with the `fortran.linter.compilerP
|
140 | 150 |
|
141 | 151 | ## Debugging
|
142 | 152 |
|
143 |
| - |
| 153 | + |
144 | 154 |
|
145 | 155 | The extension uses the debugger from Microsoft's
|
146 | 156 | [C/C++ extension](https://github.com/Microsoft/vscode-cpptools)
|
@@ -203,9 +213,9 @@ installed with `pip` automatically through the extension.
|
203 | 213 | <details>
|
204 | 214 | <summary><b>Demo: formatters in action</b></summary>
|
205 | 215 |
|
206 |
| -| findent | fprettify | |
207 |
| -| :-------------------------------: | :---------------------------------: | |
208 |
| -|  |  | |
| 216 | +| findent | fprettify | |
| 217 | +| :-----------------------------------: | :-------------------------------------: | |
| 218 | +|  |  | |
209 | 219 |
|
210 | 220 | </details>
|
211 | 221 |
|
@@ -234,9 +244,8 @@ If the formatter is not present in the `PATH` its location can be input with
|
234 | 244 | }
|
235 | 245 | ```
|
236 | 246 |
|
237 |
| -| :memo: Note | |
238 |
| -| ---------------------------------------------------------------------- | |
239 |
| -| `findent` can also be used to generate dependency files for a project. | |
| 247 | +| 📝️ Note | `findent` can also be used to generate dependency files for a project. | |
| 248 | +| -------- | ---------------------------------------------------------------------- | |
240 | 249 |
|
241 | 250 | ## Snippets
|
242 | 251 |
|
@@ -293,8 +302,8 @@ For debugging you need to have one of the following debuggers installed:
|
293 | 302 |
|
294 | 303 | You can support further development of the extension by fiscal donations:
|
295 | 304 |
|
296 |
| -<a href="https://numfocus.org/donate-to-lfortran"><img src="./assets/readme.lfortran.svg" width=90></a> to our [**LFortan**](https://numfocus.org/donate-to-lfortran) project on NumFOCUS |
| 305 | +<a href="https://numfocus.org/donate-to-lfortran"><img src="./assets/png/readme.lfortran.png"></a> to our [**LFortan**](https://numfocus.org/donate-to-lfortran) project on NumFOCUS |
297 | 306 |
|
298 | 307 | Or
|
299 | 308 |
|
300 |
| -<a href="https://github.com/fortran-lang/vscode-fortran-support"><img src="./assets/readme.github.sponsor.svg" width=120></a> directly sponsoring developers through [**GitHub Sponsors**](https://github.com/fortran-lang/vscode-fortran-support) |
| 309 | +<a href="https://github.com/fortran-lang/vscode-fortran-support"><img src="./assets/png/readme.github.sponsor.png"></a> directly sponsoring developers through [**GitHub Sponsors**](https://github.com/fortran-lang/vscode-fortran-support) |
0 commit comments