mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
vim-patch:9.0.1803: runtime(filetype): Add norg language detection (#24948)
runtime(filetype): Add norg markup language detection
closes: vim/vim#12913
03e44a1d70
Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com>
This commit is contained in:
parent
b2c3e9c72e
commit
497cf996eb
@ -695,6 +695,7 @@ local extension = {
|
|||||||
nimble = 'nim',
|
nimble = 'nim',
|
||||||
ninja = 'ninja',
|
ninja = 'ninja',
|
||||||
nix = 'nix',
|
nix = 'nix',
|
||||||
|
norg = 'norg',
|
||||||
nqc = 'nqc',
|
nqc = 'nqc',
|
||||||
roff = 'nroff',
|
roff = 'nroff',
|
||||||
tmac = 'nroff',
|
tmac = 'nroff',
|
||||||
|
@ -442,6 +442,7 @@ func s:GetFilenameChecks() abort
|
|||||||
\ 'nim': ['file.nim', 'file.nims', 'file.nimble'],
|
\ 'nim': ['file.nim', 'file.nims', 'file.nimble'],
|
||||||
\ 'ninja': ['file.ninja'],
|
\ 'ninja': ['file.ninja'],
|
||||||
\ 'nix': ['file.nix'],
|
\ 'nix': ['file.nix'],
|
||||||
|
\ 'norg': ['file.norg'],
|
||||||
\ 'nqc': ['file.nqc'],
|
\ 'nqc': ['file.nqc'],
|
||||||
\ 'nroff': ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'],
|
\ 'nroff': ['file.tr', 'file.nr', 'file.roff', 'file.tmac', 'file.mom', 'tmac.file'],
|
||||||
\ 'nsis': ['file.nsi', 'file.nsh'],
|
\ 'nsis': ['file.nsi', 'file.nsh'],
|
||||||
|
Loading…
Reference in New Issue
Block a user