2020-11-09 21:21:30 +00:00
|
|
|
;;; packages.el --- F# Layer packages File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2020-11-09 21:21:30 +00:00
|
|
|
;;
|
|
|
|
;; Author: Maximilian Wolff <smile13241324@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-11-09 21:21:30 +00:00
|
|
|
|
|
|
|
(defun spacemacs//fsharp-setup-company ()
|
|
|
|
"Conditionally setup company based on backend."
|
2020-12-06 19:23:01 +00:00
|
|
|
;; Activate lsp company explicitly to activate
|
|
|
|
;; standard backends as well
|
|
|
|
;; Eglot and LSP-mode use the same company-backend.
|
2021-06-06 20:25:00 +00:00
|
|
|
(spacemacs|add-company-backends
|
|
|
|
:backends company-capf
|
|
|
|
:modes fsharp-mode
|
|
|
|
:variables company-tooltip-align-annotations t))
|
2020-11-09 21:21:30 +00:00
|
|
|
|
|
|
|
(defun spacemacs//fsharp-setup-backend ()
|
|
|
|
"Conditionally setup fsharp backend."
|
2021-03-18 04:08:50 +00:00
|
|
|
(pcase fsharp-backend
|
2021-06-06 20:25:00 +00:00
|
|
|
('lsp (lsp-deferred))
|
2021-03-18 04:08:50 +00:00
|
|
|
('eglot (eglot-ensure))))
|
|
|
|
|
|
|
|
(defun spacemacs/fsharp-load-buffer-file-focus ()
|
|
|
|
"Send the current buffer to REPL and switch to the REPL in `insert state'."
|
|
|
|
(interactive)
|
|
|
|
(fsharp-load-buffer-file)
|
|
|
|
(switch-to-buffer-other-window inferior-fsharp-buffer-name)
|
|
|
|
(evil-insert-state))
|
|
|
|
|
|
|
|
(defun spacemacs/fsharp-eval-phrase-focus ()
|
|
|
|
"Send the current phrase to REPL and switch to the REPL in `insert state'."
|
|
|
|
(interactive)
|
|
|
|
(fsharp-eval-phrase)
|
|
|
|
(switch-to-buffer-other-window inferior-fsharp-buffer-name)
|
|
|
|
(evil-insert-state))
|
|
|
|
|
|
|
|
(defun spacemacs/fsharp-eval-region-focus (start end)
|
|
|
|
"Send the current phrase to REPL and switch to the REPL in `insert state'."
|
|
|
|
(interactive "r")
|
|
|
|
(fsharp-eval-region start end)
|
|
|
|
(switch-to-buffer-other-window inferior-fsharp-buffer-name)
|
|
|
|
(evil-insert-state))
|