You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.vimautocmdBufNewFile,BufRead*.clj,*.cljc,*.cljssetlocalfiletype=clojure" Maybe even separate out cljs?autocmdBufNewFile,BufRead*.ednsetlocalfiletype=clojure.ednautocmdBufNewFile,BufRead{build,profile}.bootsetlocalfiletype=clojure.bootautocmdBufNewFile,BufReadproject.cljsetlocalfiletype=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.
The text was updated successfully, but these errors were encountered:
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
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:
This would also make it possible to add additional syntax keywords per sub-filetype, such as highlighting
defproject
only inproject.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.
The text was updated successfully, but these errors were encountered: