Skip to content

Commit 08d512a

Browse files
dakrabbatsov
authored andcommitted
Add babashka to interpreter-mode-alist
So files with a first line of e.g. `#!/bin/env bb` will be in clojure-mode.
1 parent c1c4d9f commit 08d512a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
* Allow additional directories, beyond the default `clj[sc]`, to be correctly formulated by `clojure-expected-ns` via new `defcustom` entitled `clojure-directory-prefixes`
88
* Recognize babashka projects (identified by the presence of `bb.edn`).
99

10+
### Changes
11+
12+
* [#604](https://github.com/clojure-emacs/clojure-mode/pull/604): Add `bb` (babashka) to `interpreter-mode-alist`.
13+
1014
## 5.13.0 (2021-05-05)
1115

1216
### New features

clojure-mode.el

+3-1
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,9 @@ With universal argument \\[universal-argument], act on the \"top-level\" form."
30053005
(add-to-list 'auto-mode-alist '("\\.cljc\\'" . clojurec-mode))
30063006
(add-to-list 'auto-mode-alist '("\\.cljs\\'" . clojurescript-mode))
30073007
;; boot build scripts are Clojure source files
3008-
(add-to-list 'auto-mode-alist '("\\(?:build\\|profile\\)\\.boot\\'" . clojure-mode)))
3008+
(add-to-list 'auto-mode-alist '("\\(?:build\\|profile\\)\\.boot\\'" . clojure-mode))
3009+
;; babashka scripts are Clojure source files
3010+
(add-to-list 'interpreter-mode-alist '("bb" . clojure-mode)))
30093011

30103012
(provide 'clojure-mode)
30113013

0 commit comments

Comments
 (0)