mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
8 lines
366 B
EmacsLisp
8 lines
366 B
EmacsLisp
;;; lang/fsharp/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(when (require 'fsharp-mode nil t)
|
|
(unless (or (cl-some #'fsharp-mode--executable-find '("fsharpc" "fsc"))
|
|
(and (executable-find "dotnet")
|
|
(zerop (car (doom-call-process "dotnet" "fsi" "--version")))))
|
|
(warn! "Cannot find the F# compiler. Most features will not work.")))
|