Skip to content
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

Merged
merged 1 commit into from
Apr 18, 2022
Merged

Conversation

jgoday
Copy link
Contributor

@jgoday jgoday commented Apr 17, 2022

[Fix #615].

Adds minimal support to cljd files (clojure-dart) as a clojure derived major mode (clojuredart-mode).


  • The commits are consistent with our contribution guidelines.
  • You've added tests (if possible) to cover your change(s). Bugfix, indentation, and font-lock tests are extremely important!
  • You've run M-x checkdoc and fixed any warnings in the code you've written.
  • You've updated the changelog (if adding/changing user-visible functionality).
  • You've updated the readme (if adding/changing user-visible functionality).

Thanks!

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.
Copy link
Member

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

Copy link
Member

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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

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?

Copy link
Member

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.

Copy link
Contributor Author

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.

@ericdallo ericdallo mentioned this pull request Apr 18, 2022
5 tasks
@jgoday jgoday force-pushed the clojure-dart-mode branch from e895741 to 5a47f02 Compare April 18, 2022 20:12
@bbatsov
Copy link
Member

bbatsov commented Apr 18, 2022

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. :-)

@bbatsov bbatsov merged commit b6f41d7 into clojure-emacs:master Apr 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support clojure-dart
4 participants