We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 198493c commit ecc9ab2Copy full SHA for ecc9ab2
fsharp-mode-completion.el
@@ -246,9 +246,8 @@ For indirect buffers return the truename of the base buffer."
246
247
(defun fsharp-ac/load-file (file)
248
"Start the compiler binding for an individual F# script FILE."
249
- (when (and (fsharp-ac--script-file-p file) (file-exists-p file))
250
- (unless (fsharp-ac--process-live-p (fsharp-ac--hostname file))
251
- (fsharp-ac/start-process))
+ (when (and (fsharp-ac--script-file-p file) (not (fsharp-ac--process-live-p (fsharp-ac--hostname file))))
+ (fsharp-ac/start-process)
252
(add-hook 'after-save-hook 'fsharp-ac--load-after-save nil 'local)))
253
254
(defun fsharp-ac--load-after-save ()
0 commit comments