spacemacs/layers/+lang/elm/funcs.el

32 lines
876 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; funcs.el --- Elm Layer functions 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
;; elm-mode
(defun spacemacs/elm-compile-buffer-output ()
(interactive)
(let* ((fname (format "%s.js" (downcase (file-name-base (buffer-file-name))))))
(elm-compile--file (elm--buffer-local-file-name) fname)))
(defun spacemacs/elm-repl-push-decl-focus ()
"Send current function to the REPL and focus it in insert state."
(interactive)
(elm-repl-push-decl)
(run-elm-interactive)
(evil-insert-state))
(defun spacemacs/elm-repl-push-focus ()
"Send current region to the REPL and focus it in insert state."
(elm-repl-push)
(run-elm-interactive)
(evil-insert-state))