Skip to content

Commit 7d63898

Browse files
committed
docs: update links to new fortls repo
1 parent 63b5250 commit 7d63898

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contact_links:
66
url: https://github.com/fortran-lang/vscode-fortran-support/discussions
77
about: Have an Idea about the extension or a General inquiry that is not about Support? Start a discussion on the Modern Fortran Discussion Board.
88
- name: fortls Language Server discusion board
9-
url: https://github.com/gnikit/fortls/discussions
9+
url: https://github.com/fortran-lang/fortls/discussions
1010
about: Problems with the Language Server? Start a discussion on the fortls Language Server Discussion Board.
1111
- name: Fortran-lang discourse
1212
url: https://fortran-lang.discourse.group/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
- Hover support, Signature help and Auto-completion
3636
- GoTo/Peek implementation and Find/Peek references
3737
- Project-wide and Document symbol detection and Renaming
38-
- [Native Language Server integration](#language-server-integration) with [`fortls`](https://github.com/gnikit/fortls)
38+
- [Native Language Server integration](#language-server-integration) with [`fortls`](https://fortls.fortran-lang.org)
3939
- [Linting support](#linting): GNU's [`gfortran`](https://gcc.gnu.org/wiki/GFortran), Intel's [`ifort`](https://www.intel.com/content/www/us/en/developer/tools/oneapi/fortran-compiler.html), `ifx`, NAG's [`nagfor`](https://www.nag.co.uk/nagfor/)
4040
- [Interactive Debugger with UI](#debugging)
4141
- [Formatting](#formatting) with [findent](https://github.com/gnikit/findent-pypi) or [fprettify](https://github.com/pseewald/fprettify)
@@ -59,7 +59,7 @@
5959

6060
## Language Server integration
6161

62-
The Fortran Language Server [`fortls`](https://github.com/gnikit/fortls) is responsible
62+
The Fortran Language Server [`fortls`](https://fortls.fortran-lang.org) is responsible
6363
for providing a lot of the higher level, IDE functionality. By default,
6464
`Modern Fortran` will attempt to use it for hover, autocompletion, symbols and Go to & Peeking into definitions.
6565

src/lsp/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ export class FortlsClient {
311311
// Check for version, if this fails fortls provided is invalid
312312
const results = spawnSync(ls, ['--version']);
313313
const msg = `It is highly recommended to use the fortls to enable IDE features like hover, peeking, GoTos and many more.
314-
For a full list of features the language server adds see: https://github.com/gnikit/fortls`;
314+
For a full list of features the language server adds see: https://fortls.fortran-lang.org`;
315315
return new Promise<boolean>(resolve => {
316316
if (results.error) {
317317
const selection = window.showInformationMessage(msg, 'Install', 'Disable');

0 commit comments

Comments
 (0)