]> granicus.if.org Git - vim/commitdiff
patch 9.0.1120: tex filetype detection not sufficiently tested v9.0.1120
authorsmjonas <jonas.strittmatter@gmx.de>
Sat, 31 Dec 2022 14:46:53 +0000 (14:46 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 31 Dec 2022 14:46:53 +0000 (14:46 +0000)
Problem:    Tex filetype detection not sufficiently tested.
Solution:   Add more test cases for "tex" detection. (Jonas Strittmatter,
            closes #11765)

src/testdir/test_filetype.vim
src/version.c

index 4556eb1d1a09f7006e369f2fa97aab29173cd07e..77e68c7ea0f72fe8750afc082770d68f04cda432 100644 (file)
@@ -1653,16 +1653,44 @@ endfunc
 func Test_tex_file()
   filetype on
 
-  " only tests one case, should do more
+  call writefile(['%& pdflatex'], 'Xfile.tex')
+  split Xfile.tex
+  call assert_equal('tex', &filetype)
+  bwipe
+
+  call writefile(['\newcommand{\test}{some text}'], 'Xfile.tex')
+  split Xfile.tex
+  call assert_equal('tex', &filetype)
+  bwipe
+
+  " tex_flavor is unset
+  call writefile(['%& plain'], 'Xfile.tex')
+  split Xfile.tex
+  call assert_equal('plaintex', &filetype)
+  bwipe
+
+  let g:tex_flavor = 'plain'
+  call writefile(['just some text'], 'Xfile.tex')
+  split Xfile.tex
+  call assert_equal('plaintex', &filetype)
+  bwipe
+
   let lines =<< trim END
-      % This is a sentence.
+      % This is a comment.
 
-      This is a sentence.
+      \usemodule[translate]
   END
-  call writefile(lines, "Xfile.tex")
+  call writefile(lines, 'Xfile.tex')
   split Xfile.tex
-  call assert_equal('plaintex', &filetype)
+  call assert_equal('context', &filetype)
+  bwipe
+
+  let g:tex_flavor = 'context'
+  call writefile(['just some text'], 'Xfile.tex')
+  split Xfile.tex
+  call assert_equal('context', &filetype)
   bwipe
+  unlet g:tex_flavor
 
   call delete('Xfile.tex')
   filetype off
index 92c70ea99e7178b85d54fa01b8ed46f80a7ae4e6..230db82be2c9af5e13e6e74959bfd5d10ac39bbb 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1120,
 /**/
     1119,
 /**/