Skip to content

Commit

Permalink
Make jet-error-buffer-name buffer-name customizable. #8
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdallo committed Jul 30, 2024
1 parent 7d5157a commit 35c2c06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- Fix support for quotes `'`. #7
- Make `jet-error-buffer-name` buffer-name customizable. #8

## 1.1.0

Expand Down
6 changes: 5 additions & 1 deletion jet.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,14 @@
:group 'jet
:type 'number)

(defcustom jet-error-buffer-name "*jet error*"
"When `nil`, redirects to stdout."
:group 'jet
:type 'string)

(defvar jet-version-string "1.1.1")

(defvar jet-output-buffer-name "*jet output*")
(defvar jet-error-buffer-name "*jet error*")

(defvar jet-major-mode-alist '(("edn" . 'clojure-mode)
("json" . 'json-mode)
Expand Down

0 comments on commit 35c2c06

Please sign in to comment.