68 lines
2 KiB
EmacsLisp
68 lines
2 KiB
EmacsLisp
;;; packages.el --- F# Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2016 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))
|
|
|
|
(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/set-leader-keys-for-major-mode 'fsharp-mode
|
|
;; Compile
|
|
"cc" 'compile
|
|
|
|
"fa" 'fsharp-find-alternate-file
|
|
|
|
"gg" 'fsharp-ac/gotodefn-at-point
|
|
|
|
"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))))
|