Skip to content

Commit

Permalink
Merge pull request #9 from purcell/temp-files
Browse files Browse the repository at this point in the history
Safer temp files when formatting
  • Loading branch information
purcell committed Nov 22, 2023
2 parents 6a3327b + 3151015 commit e22f106
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions uiua-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

;; SPDX-License-Identifier: GPL-3.0-or-later
;; URL: https://github.com/crmsnbleyd/uiua-mode
;; Package-Requires: ((emacs "27.1") (reformatter "0.7"))
;; Package-Requires: ((emacs "27.1") (reformatter "0.8"))
;; Keywords: languages, uiua
;; Version: 0.0.5

Expand All @@ -22,14 +22,9 @@
:prefix "uiua-"
:group 'languages)

(defcustom uiua-mode-hook nil
"The hook that is called after loading `uiua-mode'."
:type 'hook)

(defcustom uiua-command
"uiua"
"Default command to use Uiua."
:version "27.1"
:type 'string)

(defface uiua-number
Expand Down Expand Up @@ -263,7 +258,7 @@ If GLYPHS is nil, only the latter behaviour is displayed."
:args (list "fmt")
:stdin nil
:stdout nil
:input-file (reformatter-temp-file-in-current-directory)
:input-file (reformatter-temp-file)
:lighter " UiuaFmt")

;;;###autoload
Expand Down

0 comments on commit e22f106

Please sign in to comment.