2

我目前正在尝试让 vim 的 tagbar 插件在 Mac OS X 上处理乳胶文件。

这是我的 ~/.ctags 文件:

--langdef=latex
--langmap=latex:.tex
--regex-latex=/^\\tableofcontents/TABLE OF CONTENTS/s,toc/
--regex-latex=/^\\frontmatter/FRONTMATTER/s,frontmatter/
--regex-latex=/^\\mainmatter/MAINMATTER/s,mainmatter/
--regex-latex=/^\\backmatter/BACKMATTER/s,backmatter/
--regex-latex=/^\\bibliography\{/BIBLIOGRAPHY/s,bibliography/
--regex-latex=/^\\part[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/PART \2/s,part/
--regex-latex=/^\\part[[:space:]]*\*[[:space:]]*\{([^}]+)\}/PART \1/s,part/
--regex-latex=/^\\chapter[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/CHAP \2/s,chapter/
--regex-latex=/^\\chapter[[:space:]]*\*[[:space:]]*\{([^}]+)\}/CHAP \1/s,chapter/
--regex-latex=/^\\section[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/\. \2/s,section/
--regex-latex=/^\\section[[:space:]]*\*[[:space:]]*\{([^}]+)\}/\. \1/s,section/
--regex-latex=/^\\subsection[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/\.\. \2/s,subsection/
--regex-latex=/^\\subsection[[:space:]]*\*[[:space:]]*\{([^}]+)\}/\.\. \1/s,subsection/
--regex-latex=/^\\subsubsection[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/\.\.\. \2/s,subsubsection/
--regex-latex=/^\\subsubsection[[:space:]]*\*[[:space:]]*\{([^}]+)\}/\.\.\. \1/s,subsubsection/
--regex-latex=/^\\includegraphics[[:space:]]*(\[[^]]*\])?[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/\3/g,graphic+listing/
--regex-latex=/^\\lstinputlisting[[:space:]]*(\[[^]]*\])?[[:space:]]*(\[[^]]*\])?[[:space:]]*\{([^}]+)\}/\3/g,graphic+listing/
--regex-latex=/\\label[[:space:]]*\{([^}]+)\}/\1/l,label/
--regex-latex=/\\ref[[:space:]]*\{([^}]+)\}/\1/r,ref/
--regex-latex=/\\pageref[[:space:]]*\{([^}]+)\}/\1/p,pageref/

这是我的 ~/.vimrc 中的相应部分:

let g:tagbar_type_tex = {
    \ 'ctagstype' : 'latex',
    \ 'kinds'     : [
        \ 's:sections',
        \ 'g:graphics:0:0',
        \ 'l:labels',
        \ 'r:refs:1:0',
        \ 'p:pagerefs:1:0'
    \ ],
    \ 'sort'    : 0,
\ }

我基本上从这个链接得到了所有这些:https ://github.com/vim-scripts/Tagbar/blob/master/doc/tagbar.txt

不幸的是,当我启动标签栏时,什么也没有发生,当我执行 :UpdateTags 时,我收到以下错误:

easytags.vim 3.7: Exuberant Ctags doesn't support the 'plaintex' file type! (at function xolox#easytags#update..<SNR>20_check_cfile, line 22)

ctags --version 结果:

Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Oct  1 2014, 16:18:15
  Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
  Optional compiled features: +wildcards, +regex

和“哪个ctags”在:

/usr/local/bin/ctags

当我执行 ctags --verbose abstract.tex 时,它会找到 ~/.ctags 文件并生成此标记文件:

!_TAG_FILE_FORMAT       2       /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED       1       /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR    Darren Hiebert  /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME      Exuberant Ctags //
!_TAG_PROGRAM_URL       http://ctags.sourceforge.net    /official site/
!_TAG_PROGRAM_VERSION   5.8     //
. Abstract      abstract.tex    /^\\section*{Abstract}$/;"      s

文件本身如下所示:

\section*{Abstract}

Let's see what we can do here...

我错过了什么?:(

亲切的问候和感谢您的帮助:)

4

1 回答 1

5

EasyTags 问题

  1. EasyTags 使用当前缓冲区的文件类型来确定它应该传递给的参数ctags

  2. 您的filetype文件的plaintex由 Vim 设置为*.tex文件的默认值。所以……你会得到那个错误,plaintex因为ctags.

标签栏问题

  1. 根据文档,您应该filetype在自定义配置中使用:

    g:tagbar_type_{vim filetype}
    
  2. 由于您的*.tex文件被识别为plaintex,因此您g:tagbar_type_tex将永远不会被使用。

一个自由的解决方案

  1. 添加这些行来~/.vimrc强制 Vim 将*.tex文件识别为latex

    augroup latex
        autocmd!
        autocmd BufRead,BufNewFile *.tex set filetype=latex
    augroup END
    
  2. 更改您的自定义标签栏配置:

    g:tagbar_type_tex
    

    至:

    g:tagbar_type_latex
    

只有将 Vim 配置为与latex文件类型(ftplugin、语法、缩进......)一起工作时,这个解决方案才有效,这充其量是可疑的。

保守的解决方案

  1. 在您的配置中使用plaintex而不是:latex~/.ctags

    --langdef=plaintex
    --langmap=plaintex:.tex
    --regex-plaintex=/^\\tableofcontents/TABLE OF CONTENTS/s,toc/
    ...
    
  2. 更改您的自定义标签栏配置:

    let g:tagbar_type_tex = {
        \ 'ctagstype' : 'latex',
        ...
    

    至:

    let g:tagbar_type_plaintex = {
        \ 'ctagstype' : 'plaintex',
        ...
    
于 2014-10-01T16:52:37.140 回答