Skip to content

Commit

Permalink
Update F# guidance
Browse files Browse the repository at this point in the history
The current docs install FSAC as a global tool, but invoke it as a local tool. Invoking it as a global tool means executing the globally-installed shim (which is installed to a global path by default).
  • Loading branch information
baronfel authored and rwols committed Aug 8, 2022
1 parent 4b0889b commit 20a1d74
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Follow installation instructions on [LSP-elm](https://github.com/sublimelsp/LSP-
"clients": {
"fsautocomplete": {
"enabled": true,
"command": ["dotnet", "fsautocomplete", "--background-service-enabled"],
"command": ["fsautocomplete", "--background-service-enabled"],
"selector": "source.fsharp",
"initializationOptions": {
"AutomaticWorkspaceInit": true
Expand All @@ -139,6 +139,9 @@ Follow installation instructions on [LSP-elm](https://github.com/sublimelsp/LSP-
}
```

!!! info "A note about .NET Tools and $PATH"
If the `fsautocomplete` executable isn't on your $PATH after installing it globally, ensure the .NET global tools location (by default `$HOME/.dotnet/tools`) is on your $PATH.

## Fortran

1. Install the [ Fortran](https://packagecontrol.io/packages/Fortran) package from Package Control for syntax highlighting.
Expand Down

0 comments on commit 20a1d74

Please sign in to comment.