File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 32
32
:group 'lsp-mode
33
33
:package-version '(lsp-mode . " 6.1" ))
34
34
35
- (defcustom lsp-fsharp-server-install-dir (f-join lsp-server-install-dir " fsautocomplete/" )
36
- " Install directory for fsautocomplete server.
37
- The slash is expected at the end."
38
35
:group 'lsp-fsharp
39
36
:risky t
40
37
:type 'directory
@@ -178,10 +175,7 @@ available, else the globally installed tool."
178
175
179
176
(defun lsp-fsharp--fsac-cmd ()
180
177
" The location of fsautocomplete executable."
181
- (or (-let [maybe-local-executable (expand-file-name " fsautocomplete" lsp-fsharp-server-install-dir)]
182
- (when (f-exists-p maybe-local-executable)
183
- maybe-local-executable))
184
- (executable-find " fsautocomplete" )
178
+ (or (executable-find " fsautocomplete" )
185
179
(f-join (or (getenv " USERPROFILE" ) (getenv " HOME" ))
186
180
" .dotnet" " tools" " fsautocomplete" )))
187
181
You can’t perform that action at this time.
0 commit comments