Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 975b3a2

Browse filesBrowse files
ikappakibbatsov
authored andcommitted
Identify basilisp.edn and .lpy file extensions as Clojure type
1 parent 87e8e81 commit 975b3a2
Copy full SHA for 975b3a2

File tree

Expand file treeCollapse file tree

2 files changed

+6
-1
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+6
-1
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
* [#671](https://github.com/clojure-emacs/clojure-mode/issues/671): Syntax highlighting for digits after the first in % args
1212

13+
# Changes
14+
15+
* [#675](https://github.com/clojure-emacs/clojure-mode/issues/675): Add `.lpy` to the list of known Clojure file extensions.
16+
1317
## 5.18.1 (2023-11-24)
1418

1519
### Bugs fixed

‎clojure-mode.el

Copy file name to clipboardExpand all lines: clojure-mode.el
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ For example, \[ is allowed in :db/id[:db.part/user]."
236236
"shadow-cljs.edn" ; shadow-cljs
237237
"bb.edn" ; babashka
238238
"nbb.edn" ; nbb
239+
"basilisp.edn" ; Basilisp (Python)
239240
)
240241
"A list of files, which identify a Clojure project's root.
241242
Out-of-the box `clojure-mode' understands lein, boot, gradle,
@@ -3320,7 +3321,7 @@ With universal argument \\[universal-argument], act on the \"top-level\" form."
33203321
;;;###autoload
33213322
(progn
33223323
(add-to-list 'auto-mode-alist
3323-
'("\\.\\(clj\\|cljd\\|dtm\\|edn\\)\\'" . clojure-mode))
3324+
'("\\.\\(clj\\|cljd\\|dtm\\|edn\\|lpy\\)\\'" . clojure-mode))
33243325
(add-to-list 'auto-mode-alist '("\\.cljc\\'" . clojurec-mode))
33253326
(add-to-list 'auto-mode-alist '("\\.cljs\\'" . clojurescript-mode))
33263327
;; boot build scripts are Clojure source files

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.