mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
patch 9.1.0986: filetype: 'jj' filetype is a bit imprecise
Problem: filetype: 'jj' filetype is a bit imprecise Solution: rename 'jj' filetype to 'jjdescription' (Gregory Anders) closes: #16364 Signed-off-by: Gregory Anders <greg@gpanders.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
bde76da4d0
commit
58c44e8833
4
.github/MAINTAINERS
vendored
4
.github/MAINTAINERS
vendored
@ -203,7 +203,7 @@ runtime/ftplugin/java.vim @zzzyxwvut
|
|||||||
runtime/ftplugin/javacc.vim @ribru17
|
runtime/ftplugin/javacc.vim @ribru17
|
||||||
runtime/ftplugin/javascript.vim @dkearns
|
runtime/ftplugin/javascript.vim @dkearns
|
||||||
runtime/ftplugin/javascriptreact.vim @dkearns
|
runtime/ftplugin/javascriptreact.vim @dkearns
|
||||||
runtime/ftplugin/jj.vim @gpanders
|
runtime/ftplugin/jjdescription.vim @gpanders
|
||||||
runtime/ftplugin/json.vim @dbarnett
|
runtime/ftplugin/json.vim @dbarnett
|
||||||
runtime/ftplugin/json5.vim @dkearns
|
runtime/ftplugin/json5.vim @dkearns
|
||||||
runtime/ftplugin/jsonc.vim @izhakjakov
|
runtime/ftplugin/jsonc.vim @izhakjakov
|
||||||
@ -506,7 +506,7 @@ runtime/syntax/jargon.vim @h3xx
|
|||||||
runtime/syntax/java.vim @zzzyxwvut
|
runtime/syntax/java.vim @zzzyxwvut
|
||||||
runtime/syntax/javascript.vim @fleiner
|
runtime/syntax/javascript.vim @fleiner
|
||||||
runtime/syntax/jinja.vim @gpanders
|
runtime/syntax/jinja.vim @gpanders
|
||||||
runtime/syntax/jj.vim @gpanders
|
runtime/syntax/jjdescription.vim @gpanders
|
||||||
runtime/syntax/json.vim @vito-c
|
runtime/syntax/json.vim @vito-c
|
||||||
runtime/syntax/jsonc.vim @izhakjakov
|
runtime/syntax/jsonc.vim @izhakjakov
|
||||||
runtime/syntax/julia.vim @carlobaldassi
|
runtime/syntax/julia.vim @carlobaldassi
|
||||||
|
@ -1244,7 +1244,7 @@ au BufNewFile,BufRead *.jgr setf jgraph
|
|||||||
au BufNewFile,BufRead *.jinja setf jinja
|
au BufNewFile,BufRead *.jinja setf jinja
|
||||||
|
|
||||||
" Jujutsu
|
" Jujutsu
|
||||||
au BufNewFile,BufRead *.jjdescription setf jj
|
au BufNewFile,BufRead *.jjdescription setf jjdescription
|
||||||
|
|
||||||
" Jovial
|
" Jovial
|
||||||
au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial
|
au BufNewFile,BufRead *.jov,*.j73,*.jovial setf jovial
|
||||||
|
@ -21,4 +21,4 @@ hi def link jjAdded Added
|
|||||||
hi def link jjRemoved Removed
|
hi def link jjRemoved Removed
|
||||||
hi def link jjChanged Changed
|
hi def link jjChanged Changed
|
||||||
|
|
||||||
let b:current_syntax = 'jj'
|
let b:current_syntax = 'jjdescription'
|
@ -391,7 +391,7 @@ def s:GetFilenameChecks(): dict<list<string>>
|
|||||||
jess: ['file.clp'],
|
jess: ['file.clp'],
|
||||||
jgraph: ['file.jgr'],
|
jgraph: ['file.jgr'],
|
||||||
jinja: ['file.jinja'],
|
jinja: ['file.jinja'],
|
||||||
jj: ['file.jjdescription'],
|
jjdescription: ['file.jjdescription'],
|
||||||
jovial: ['file.jov', 'file.j73', 'file.jovial'],
|
jovial: ['file.jov', 'file.j73', 'file.jovial'],
|
||||||
jproperties: ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'],
|
jproperties: ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'],
|
||||||
jq: ['file.jq'],
|
jq: ['file.jq'],
|
||||||
|
@ -704,6 +704,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
986,
|
||||||
/**/
|
/**/
|
||||||
985,
|
985,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user