File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 3636 :link '(url-link " https://github.com/fsharp/FsAutoComplete" )
3737 :group 'eglot )
3838
39+ (defcustom eglot-fsharp-server-path " ~/.dotnet/tools/"
40+ " Path to the location of FsAutoComplete."
41+ :group 'eglot-fsharp
42+ :risky t )
43+
3944(defcustom eglot-fsharp-server-install-dir
4045 (locate-user-emacs-file " FsAutoComplete/" )
4146 " Install directory for FsAutoComplete."
122127 " Return FsAutoComplete path."
123128 (let ((base (if eglot-fsharp-server-install-dir
124129 (concat eglot-fsharp-server-install-dir " netcore/" )
125- " ~/.dotnet/tools/ " )))
130+ eglot-fsharp-server-path )))
126131 (expand-file-name (concat base " fsautocomplete" (if (eq system-type 'windows-nt ) " .exe" " " )))))
127132
128133; ; cache to prevent repetitive queries
You can’t perform that action at this time.
0 commit comments