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

32 lines
734 B
EmacsLisp
Raw Normal View History

;;; funcs.el --- Hy Layer functions File for Spacemacs
;;
2020-09-16 21:34:40 +00:00
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
;;
;; Author: Muneeb Shaikh <muneeb@reversehack.in>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; REPL
(defun spacemacs/hy-shell-eval-buffer-and-go ()
"Send current buffer to REPL and focus it."
(interactive)
(hy-shell-eval-buffer)
(run-hy))
(defun spacemacs/hy-shell-eval-current-form-and-go ()
"Send current form to REPL and focus it."
(interactive)
(hy-shell-eval-current-form)
(run-hy))
(defun spacemacs/hy-shell-eval-region-and-go ()
"Send region to REPL and focus it."
(interactive)
(hy-shell-eval-region)
(run-hy))