spacemacs/contrib/!lang/fsharp/packages.el

70 lines
2 KiB
EmacsLisp
Raw Normal View History

2015-03-14 05:45:52 +00:00
;;; packages.el --- F# Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 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
2015-03-10 23:11:29 +00:00
(setq fsharp-packages '(fsharp-mode))
2015-03-14 05:45:52 +00:00
2015-03-10 23:11:29 +00:00
(defun fsharp/init-fsharp-mode ()
(use-package fsharp-mode
:defer t
2015-03-14 05:45:52 +00:00
:init
(setq fsharp-doc-idle-delay .2
fsharp-build-command "/usr/local/bin/xbuild")
2015-03-10 23:11:29 +00:00
:config
(progn
2015-03-14 05:45:52 +00:00
(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))
2015-03-10 23:11:29 +00:00
(evil-leader/set-key-for-mode 'fsharp-mode
;; Compile
"mcc" 'compile
2015-03-14 05:45:52 +00:00
2015-03-10 23:11:29 +00:00
"mfa" 'fsharp-find-alternate-file
2015-03-14 05:45:52 +00:00
"mgg" 'fsharp-ac/gotodefn-at-point
"mht" 'fsharp-ac/show-tooltip-at-point
"msb" 'fsharp-load-buffer-file
"msB" 'spacemacs/fsharp-load-buffer-file-focus
"msi" 'fsharp-show-subshell
"msp" 'fsharp-eval-phrase
"msP" 'spacemacs/fsharp-eval-phrase-focus
"msr" 'fsharp-eval-region
"msR" 'spacemacs/fsharp-eval-region-focus
"mss" 'fsharp-show-subshell
"mxf" 'fsharp-run-executable-file))))