diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 500f469236..7432c82801 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1275,6 +1275,9 @@ au BufNewFile,BufRead *.or setf openroad " OPL au BufNewFile,BufRead *.[Oo][Pp][Ll] setf opl +" OpenSCAD +au BufNewFile,BufRead *.scad setf openscad + " Oracle config file au BufNewFile,BufRead *.ora setf ora diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 1bc94b539f..f832e4ef47 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -384,6 +384,7 @@ let s:filename_checks = { \ 'omnimark': ['file.xom', 'file.xin'], \ 'opam': ['opam', 'file.opam', 'file.opam.template'], \ 'openroad': ['file.or'], + \ 'openscad': ['file.scad'], \ 'ora': ['file.ora'], \ 'org': ['file.org', 'file.org_archive'], \ 'pamconf': ['/etc/pam.conf', '/etc/pam.d/file', 'any/etc/pam.conf', 'any/etc/pam.d/file'], diff --git a/src/version.c b/src/version.c index c3aad487b3..febf286e43 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4767, /**/ 4766, /**/