You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related: ionide/FsAutoComplete#883
FsAutoComplete now encourage users to manage FSAC via dotnet tool: dotnet tool install fsautocomplete for project-local install and dotnet tool install -g fsautocomplete for global install.
Ionide-vim used to manage FSAC on its own, but following the above change, it will no longer do so and will require users to install FSAC via dotnet tool install.
The command :FSharpUpdateFSAC will be removed.
The default value of g:fsharp#fsautocomplete_command will be ['fsautocomplete', '--background-service-enabled'] (globally-installed FSAC).
Ionide-vim will no longer require running make fsautocomplete on installation.
The text was updated successfully, but these errors were encountered:
Instead of getting rid of installation entirely, maybe do dotnet install -g fsautocomplete in the Makefile instead? Might be less surprising for people not paying attention to these issues. Just a suggestion...
One potential problem is that running global tools requires the user has ~/.dotnet/tools in $PATH (or equivalent on windows) properly.
Instead of getting rid of installation entirely, maybe do dotnet install -g fsautocomplete in the Makefile instead? Might be less surprising for people not paying attention to these issues. Just a suggestion...
One potential problem is that running global tools requires the user has ~/.dotnet/tools in $PATH (or equivalent on windows) properly.
Could be done, but I'd still recommend not auto-running the makefile then, imo.
Related: ionide/FsAutoComplete#883
FsAutoComplete now encourage users to manage FSAC via dotnet tool:
dotnet tool install fsautocomplete
for project-local install anddotnet tool install -g fsautocomplete
for global install.Ionide-vim used to manage FSAC on its own, but following the above change, it will no longer do so and will require users to install FSAC via
dotnet tool install
.:FSharpUpdateFSAC
will be removed.g:fsharp#fsautocomplete_command
will be['fsautocomplete', '--background-service-enabled']
(globally-installed FSAC).make fsautocomplete
on installation.The text was updated successfully, but these errors were encountered: