vim-patch:9.0.0771: cannot always tell the difference beween tex and … (#20687)

vim-patch:9.0.0771: cannot always tell the difference beween tex and rexx files

Problem:    Cannot always tell the difference beween tex and rexx files.
Solution:   Recognize tex by a leading backslash. (Martin Tournoij,
            closes vim/vim#11380)
bd053f894b
This commit is contained in:
Jonas Strittmatter 2022-10-17 08:18:57 +02:00 committed by GitHub
parent 8617101b6b
commit d44f088834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -145,7 +145,7 @@ func dist#ft#FTcls()
return
endif
if getline(1) =~ '^%'
if getline(1) =~ '^\v%(\%|\\)'
setf tex
elseif getline(1)[0] == '#' && getline(1) =~ 'rexx'
setf rexx

View File

@ -181,7 +181,7 @@ function M.cls(bufnr)
return vim.g.filetype_cls
end
local line = getlines(bufnr, 1)
if line:find('^%%') then
if line:find('^[%%\\]') then
return 'tex'
elseif line:find('^#') and line:lower():find('rexx') then
return 'rexx'

View File

@ -1768,6 +1768,11 @@ func Test_cls_file()
call assert_equal('tex', &filetype)
bwipe!
call writefile(['\NeedsTeXFormat{LaTeX2e}'], 'Xfile.cls')
split Xfile.cls
call assert_equal('tex', &filetype)
bwipe!
" Rexx
call writefile(['# rexx'], 'Xfile.cls')