gpt4 book ai didi

Vim 未在启动时设置 `tex` 文件类型

转载 作者:行者123 更新时间:2023-12-04 20:38:27 24 4
gpt4 key购买 nike

我注意到如果我用 Vim 打开一个不存在的 HTML 文件,文件类型会自动设置为 html :

$ vim foobar.html
:set filetype # --> filetype=html

另一方面,TeX 不会发生同样的情况。如果我创建一个不存在的文件,文件类型是 plaintext ,我必须保存文件并重新打开它才能正确设置它:
$ vim blabla.tex
:set filetype # --> filetype=plaintext

我也尝试过使用 Python、C、VimL、Javascript 文件,并且文件类型总是立即设置。我不知道为什么 TeX 文件不会发生这种情况。

我认为唯一可能会干扰的是 vim-latex .那可能吗?如果是这样,我该如何解决这个问题?

如果有帮助, here是我没那么久 .vimrc文件。

最佳答案

Vim 使用一个巨大的启发式方法来确定 plaintex 与 tex 的其他变体。

如果您查看 $VIMRUNTIME/filetype.vim你会发现以下功能

" Choose context, plaintex, or tex (LaTeX) based on these rules:
" 1. Check the first line of the file for "%&<format>".
" 2. Check the first 1000 non-comment lines for LaTeX or ConTeXt keywords.
" 3. Default to "latex" or to g:tex_flavor, can be set in user's vimrc.
func! s:FTtex()
let firstline = getline(1)
if firstline =~ '^%&\s*\a\+'
let format = tolower(matchstr(firstline, '\a\+'))
let format = substitute(format, 'pdf', '', '')
if format == 'tex'
let format = 'plain'
endif
else
" Default value, may be changed later:
let format = exists("g:tex_flavor") ? g:tex_flavor : 'plain'
" Save position, go to the top of the file, find first non-comment line.
let save_cursor = getpos('.')
call cursor(1,1)
let firstNC = search('^\s*[^[:space:]%]', 'c', 1000)
if firstNC " Check the next thousand lines for a LaTeX or ConTeXt keyword.
let lpat = 'documentclass\>\|usepackage\>\|begin{\|newcommand\>\|renewcommand\>'
let cpat = 'start\a\+\|setup\a\+\|usemodule\|enablemode\|enableregime\|setvariables\|useencoding\|usesymbols\|stelle\a\+\|verwende\a\+\|stel\a\+\|gebruik\a\+\|usa\a\+\|imposta\a\+\|regle\a\+\|utilisemodule\>'
let kwline = search('^\s*\\\%(' . lpat . '\)\|^\s*\\\(' . cpat . '\)',
\ 'cnp', firstNC + 1000)
if kwline == 1 " lpat matched
let format = 'latex'
elseif kwline == 2 " cpat matched
let format = 'context'
endif " If neither matched, keep default set above.
" let lline = search('^\s*\\\%(' . lpat . '\)', 'cn', firstNC + 1000)
" let cline = search('^\s*\\\%(' . cpat . '\)', 'cn', firstNC + 1000)
" if cline > 0
" let format = 'context'
" endif
" if lline > 0 && (cline == 0 || cline > lline)
" let format = 'tex'
" endif
endif " firstNC
call setpos('.', save_cursor)
endif " firstline =~ '^%&\s*\a\+'

" Translation from formats to file types. TODO: add AMSTeX, RevTex, others?
if format == 'plain'
setf plaintex
elseif format == 'context'
setf context
else " probably LaTeX
setf tex
endif
return
endfunc

此函数确定要使用的 tex 风格。如果您查看它,您可以看到默认值取自 g:tex_flavor (如果存在,默认为普通)。如果您将此变量设置为 tex(在您的 vimrc 中),vim 将默认为 tex 文件类型。
let g:tex_flavor = 'tex'

关于Vim 未在启动时设置 `tex` 文件类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28648624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com