ebe4c60264
This reverts commit 29c78ce841
and all other fixes
that have been made afterwards.
The motivation is that use-package is seen by many as a replacement for
`require`. Is use-package always defer the loading of packages then is breaks
this use case, this does not respect POLA so even if it was making Spacemacs
loading faster (up to 3s faster on some startup on my machine) we just cannot
use it, it would be irresponsible. Spacemacs should be easy to use, loading
performance will come with time but it is not a priority.
88 lines
2.8 KiB
EmacsLisp
88 lines
2.8 KiB
EmacsLisp
;;; packages.el --- F# Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(setq fsharp-packages
|
|
'(
|
|
fsharp-mode
|
|
ggtags
|
|
counsel-gtags
|
|
helm-gtags
|
|
))
|
|
|
|
(defun fsharp/init-fsharp-mode ()
|
|
(use-package fsharp-mode
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(setq fsharp-doc-idle-delay .2)
|
|
(spacemacs/register-repl 'fsharp-mode 'fsharp-show-subshell "F#"))
|
|
:config
|
|
(progn
|
|
|
|
(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))
|
|
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "mf" "find")
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "ms" "interpreter")
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "mx" "executable")
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "mc" "compile")
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "mg" "goto")
|
|
(spacemacs/declare-prefix-for-mode 'fsharp-mode "mh" "hint")
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'fsharp-mode
|
|
;; Compile
|
|
"cc" 'compile
|
|
|
|
"fa" 'fsharp-find-alternate-file
|
|
|
|
"ht" 'fsharp-ac/show-tooltip-at-point
|
|
|
|
"'" 'fsharp-show-subshell
|
|
"sb" 'fsharp-load-buffer-file
|
|
"sB" 'spacemacs/fsharp-load-buffer-file-focus
|
|
"si" 'fsharp-show-subshell
|
|
"sp" 'fsharp-eval-phrase
|
|
"sP" 'spacemacs/fsharp-eval-phrase-focus
|
|
"sr" 'fsharp-eval-region
|
|
"sR" 'spacemacs/fsharp-eval-region-focus
|
|
"ss" 'fsharp-show-subshell
|
|
|
|
"xf" 'fsharp-run-executable-file))))
|
|
|
|
(defun fsharp/post-init-ggtags ()
|
|
(add-hook 'fsharp-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
|
|
|
|
(defun fsharp/post-init-counsel-gtags ()
|
|
(spacemacs/counsel-gtags-define-keys-for-mode 'fsharp-mode))
|
|
|
|
(defun fsharp/post-init-helm-gtags ()
|
|
(spacemacs/helm-gtags-define-keys-for-mode 'fsharp-mode))
|