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

Create sub-filetypes for EDN, boot and Leiningen files #9

Closed
axvr opened this issue Jan 10, 2021 · 1 comment
Closed

Create sub-filetypes for EDN, boot and Leiningen files #9

axvr opened this issue Jan 10, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@axvr
Copy link
Member

axvr commented Jan 10, 2021

This is a proposal/request for comments for a possible future change. No change will be made/merged without feedback or demand.


It is possible to make Clojure.vim automatically mark specific Clojure files as Clojure sub-types by using a lesser known Vim feature detailed under :h 'filetype'. This may improve configurabilty and allow other plugins to run specific code for each sub-filetype.

This can be done by changing the filetype detection code to something like this:

" ftdetect/clojure.vim
autocmd BufNewFile,BufRead *.clj,*.cljc,*.cljs setlocal filetype=clojure  " Maybe even separate out cljs?
autocmd BufNewFile,BufRead *.edn setlocal filetype=clojure.edn
autocmd BufNewFile,BufRead {build,profile}.boot setlocal filetype=clojure.boot
autocmd BufNewFile,BufRead project.clj setlocal filetype=clojure.lein

This would also make it possible to add additional syntax keywords per sub-filetype, such as highlighting defproject only in project.clj files.

There may be better ways of achieving the same goals without having to add lots of new filetypes (which may conflict with other filetypes included in Vim). If you can think of any or have any thoughts on this, please leave a comment below.

@axvr
Copy link
Member Author

axvr commented Oct 17, 2021

Closing this because I no longer think it is necessary.

If this is something you would like, please leave a comment detailing your potential use case.

@axvr axvr closed this as completed Oct 17, 2021
@axvr axvr added the enhancement New feature or request label Oct 17, 2021
@axvr axvr changed the title [Feature proposal] Create sub-filetypes for EDN, boot and Leiningen files Create sub-filetypes for EDN, boot and Leiningen files Oct 17, 2021
@axvr axvr added the wontfix label Oct 17, 2021
@axvr axvr closed this as not planned Won't fix, can't repro, duplicate, stale Jun 23, 2023
@axvr axvr removed the wontfix label Jun 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant