mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
vim-patch:9.0.1395: Odin files are not recognized (#22580)
Problem: Odin files are not recognized.
Solution: Add a pattern for Odin files. (Amaan Qureshi, closes vim/vim#12122)
638388b8ef
This commit is contained in:
parent
6dd9770baf
commit
ae70e946ee
@ -751,6 +751,7 @@ local extension = {
|
||||
mli = 'ocaml',
|
||||
ml = 'ocaml',
|
||||
occ = 'occam',
|
||||
odin = 'odin',
|
||||
xom = 'omnimark',
|
||||
xin = 'omnimark',
|
||||
opam = 'opam',
|
||||
|
@ -414,6 +414,7 @@ let s:filename_checks = {
|
||||
\ 'ocaml': ['file.ml', 'file.mli', 'file.mll', 'file.mly', '.ocamlinit', 'file.mlt', 'file.mlp', 'file.mlip', 'file.mli.cppo', 'file.ml.cppo'],
|
||||
\ 'occam': ['file.occ'],
|
||||
\ 'octave': ['octaverc', '.octaverc', 'octave.conf'],
|
||||
\ 'odin': ['file.odin'],
|
||||
\ 'omnimark': ['file.xom', 'file.xin'],
|
||||
\ 'opam': ['opam', 'file.opam', 'file.opam.template'],
|
||||
\ 'openroad': ['file.or'],
|
||||
|
Loading…
Reference in New Issue
Block a user