From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Thu, 5 Oct 2023 18:11:55 +0000 (+0200) Subject: runtime(just): Correct filetype detection pattern and style (#13284) X-Git-Tag: v9.0.1986~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6d01f131c6ad44451b63ff437fa04169173f1c5;p=thirdparty%2Fvim.git runtime(just): Correct filetype detection pattern and style (#13284) See https://github.com/vim/vim/pull/13271#discussion_r1347279686 and https://github.com/NoahTheDuke/vim-just/blob/main/ftdetect/just.vim. Signed-off-by: Christian Brabandt --- diff --git a/runtime/filetype.vim b/runtime/filetype.vim index f3049636f4..3e7036cbbc 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1094,7 +1094,7 @@ au BufNewFile,BufRead *.jsonnet,*.libsonnet setf jsonnet au BufNewFile,BufRead *.jl setf julia " Just -autocmd BufNewFile,BufRead *[jJ]ustfile,.justfile,*.just setfiletype just +au BufNewFile,BufRead [jJ]ustfile,.justfile,*.just setf just " KDL au BufNewFile,BufRead *.kdl setf kdl