0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 9.0.1803: runtime(filetype): Add norg language detection

runtime(filetype): Add norg markup language detection

closes: #12913

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com>
This commit is contained in:
NTBBloodbath 2023-08-27 19:15:20 +02:00 committed by Christian Brabandt
parent e3daa06be1
commit 03e44a1d70
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
3 changed files with 6 additions and 0 deletions

View File

@ -1407,6 +1407,9 @@ au BufNewFile,BufRead *.ninja setf ninja
" Nix
au BufRead,BufNewFile *.nix setf nix
" Norg
au BufNewFile,BufRead *.norg setf norg
" NPM RC file
au BufNewFile,BufRead npmrc,.npmrc setf dosini

View File

@ -482,6 +482,7 @@ def s:GetFilenameChecks(): dict<list<string>>
nim: ['file.nim', 'file.nims', 'file.nimble'],
ninja: ['file.ninja'],
nix: ['file.nix'],
norg: ['file.norg'],
nqc: ['file.nqc'],
nroff: ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'],
nsis: ['file.nsi', 'file.nsh'],

View File

@ -699,6 +699,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1803,
/**/
1802,
/**/