-
-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support clojure-dart files #616
Conversation
clojure-mode.el
Outdated
@@ -3067,12 +3070,19 @@ With universal argument \\[universal-argument], act on the \"top-level\" form." | |||
|
|||
\\{clojurec-mode-map}") | |||
|
|||
;;;###autoload | |||
(define-derived-mode clojuredart-mode clojure-mode "ClojureDart" | |||
"Major mode for editing ClojureDart code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if we need/want a new major mode currently, note that e.g. Babashka doesn't get one.
babashka works in clojure-mode which makes sense and has no reported issues.
Likewise clojurec-mode
works with arbitrary reader conditionals e.g. :cljs
or :bb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Babashka, however, is supposed to be closer to Clojure. Generally the derived modes make more sense for languages with a different runtime and syntactic oddities. I'm not familiar with ClojureDart, so it's hard to say something concrete about it, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From what I can see in #615 (comment) , none of these differences so far warrants a distinct mode - they don't seem to imply changes to the things clojure-mode is concerned with e.g. syntax coloring.
It's worth noting that other target runtimes such as CLR, Erlang, etc haven't gotten a mode either.
"No is temporary, yes is forever", so we could just keep it simpler and grow it from there?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In practice it doesn't really matter much. The derived modes are very "cheap" and light, so it's not like they add much complexity. I added a derived mode for ClojureScript and clojurec mostly to simplify some checks in CIDER (it's easier to check the major mode than file extensions) and to get cleaner buffer grouping. As runtime like CLR and Erlang never took off there wasn't much demand to do anything about them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Certainly! it makes totally sense. Reverted the commit to remove clojuredart-major-mode, and just added cljd extension to auto-mode-alist clojure-mode.
e895741
to
5a47f02
Compare
I see that in the meantime @jgoday simplified the PR to the bare minimum, so I guess I'll just merge this as that's too much of a discussion for a super trivial change. :-) |
[Fix #615].
Adds minimal support to cljd files (clojure-dart) as a clojure derived major mode (clojuredart-mode).
M-x checkdoc
and fixed any warnings in the code you've written.Thanks!