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

29 lines
825 B
EmacsLisp
Raw Normal View History

2019-02-10 18:54:49 +00:00
;;; funcs.el --- reasonml layer functions file for Spacemacs
;;
2020-09-16 21:34:40 +00:00
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
2019-02-10 18:54:49 +00:00
;;
;; Author: Dave Aitken <dave.aitken@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun reason/rtop-prompt ()
"The rtop prompt function."
(let ((prompt (format "rtop[%d]> " utop-command-number)))
(add-text-properties 0 (length prompt) '(face utop-prompt) prompt)
prompt))
(defun reason/refmt-re-to-ml ()
(interactive)
(if (use-region-p)
(apply-refmt (region-beginning) (region-end) "re" "ml")
(apply-refmt nil nil "re" "ml")))
(defun reason/refmt-ml-to-re ()
(interactive)
(if (use-region-p)
(apply-refmt (region-beginning) (region-end) "ml" "re")
(apply-refmt nil nil "ml" "re")))