We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d92a973 + fe8037f commit 8d08f05Copy full SHA for 8d08f05
eglot-fsharp.el
@@ -36,6 +36,11 @@
36
:link '(url-link "https://github.com/fsharp/FsAutoComplete")
37
:group 'eglot)
38
39
+(defcustom eglot-fsharp-server-path "~/.dotnet/tools/"
40
+ "Path to the location of FsAutoComplete."
41
+ :group 'eglot-fsharp
42
+ :risky t)
43
+
44
(defcustom eglot-fsharp-server-install-dir
45
(locate-user-emacs-file "FsAutoComplete/")
46
"Install directory for FsAutoComplete."
@@ -122,7 +127,7 @@
122
127
"Return FsAutoComplete path."
123
128
(let ((base (if eglot-fsharp-server-install-dir
124
129
(concat eglot-fsharp-server-install-dir "netcore/")
125
- "~/.dotnet/tools/")))
130
+ eglot-fsharp-server-path)))
126
131
(expand-file-name (concat base "fsautocomplete" (if (eq system-type 'windows-nt) ".exe" "")))))
132
133
;; cache to prevent repetitive queries
0 commit comments