-
Hi, I just learned that Chris Hansen's repo (fortran-language-server) is no longer under development and you are the one who keeps it going nowadays :) Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @lukhirt, To briefly answer your question, yes you can replace To be a bit more detailed: Simply uninstalling I am also a developer for the VS Code Modern Fortran extension, so in VS Code we have complete control over Fortran support and features. I made the decision a while back that relying on In the Pre-Release version of the extension, and all versions moving forward, we can natively interface with A range of new settings should be available under The other main reason why I recommend to individuals to switch is for the shear number of bug fixes and new features I hope that clears things up a bit. P.S. the default settings Modern Fortran sets to |
Beta Was this translation helpful? Give feedback.
Hi @lukhirt,
To briefly answer your question, yes you can replace
fortran-language-server
withfortls
. This is the main reason why I kept the namefortls
so people and code editor extensions would not have to support 2 language servers.To be a bit more detailed:
Simply uninstalling
fortran-language-server
and installingfortls
should already give you access to most new features I have added, but it will certainly not give you access, through VS Codesettings.json
, to all the new settings. You can use a.fortls
file to circumvent that, since I have unified the command-line andjson
interfaces, but there is a much easier way.I am also a developer for the VS Code Modern Fortran extension, …