代码之家  ›  专栏  ›  技术社区  ›  hcs42

使ctags在erlang代码的标记文件中包含模块限定符

  •  5
  • hcs42  · 技术社区  · 15 年前

    我正在使用丰富的ctags索引Erlang文件。

    “tags”文件包含函数,但它们没有模块限定符;因此 我不能搜索“module:function”,只能搜索“function”,它可能会给出几个 结果。

    你知道一种让ctags在标签文件中包含模块限定符的方法吗?

    谢谢。

    4 回复  |  直到 11 年前
        1
  •  3
  •   lht    14 年前

    繁荣的CTAG已经支持 tag field “模块”用于Erlang。

    $ /usr/bin/ctags --version
    Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
      Compiled: Aug 17 2010, 17:33:33
      Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
      Optional compiled features: +wildcards, +regex
    $ /usr/bin/ctags xref_parser.erl
    

    带有名为“module”的标记字段的典型标记行如下:

    yeccgoto_const  xref_parser.erl /^yeccgoto_const(24=_S, Cat, Ss, Stack, T, Ts, Tzr) ->$/;"      f       module:xref_parser
    

    实际上,现在是vim不支持这个标签字段。从 VIM doc 以下内容:

    {field} ..  A list of optional fields.  Each field has the form:
    
                <Tab>{fieldname}:{value}
    
            The {fieldname} identifies the field, and can only contain
            alphabetical characters [a-zA-Z].
            The {value} is any string, but cannot contain a <Tab>.
    
            There is one field that doesn't have a ':'.  This is the kind
            of the tag.  It is handled like it was preceded with "kind:".
            See the documentation of ctags for the kinds it produces.
    
            The only other field currently recognized by Vim is "file:"
            (with an empty value).  It is used for a static tag.
    

    就是这样。只支持“kind”和“file”标记字段名。

        2
  •  3
  •   jmuc    11 年前

    和lht写的一样,繁荣的ctags 5.8已经在标签文件中存储了函数的模块。至少在VIM(7.4)的最新版本中,可以访问此信息。然后可以使用自定义的“tag”功能查找“module:function”,例如:

    function! ErlangTag()
        let isk_orig = &isk
        set isk+=:
        let keyword = expand('<cword>')
        let &isk = isk_orig
        let parts = split(keyword, ':')
        if len(parts) == 1
            execute 'tag' parts[0]
        elseif len(parts) == 2
            let [mod, fun] = parts
            let i = 1
            let fun_taglist = taglist('^' . fun . '$')
            for item in fun_taglist
               if item.kind == 'f' && item.module == mod
                   silent execute i . 'tag' fnameescape(item.name)
                   break
               endif
               let i += 1
            endfor
        endif
    endfunction
    
    nnoremap <buffer> <c-]>    :call ErlangTag()<cr>
    
        3
  •  1
  •   Christian    15 年前

    听起来您没有使用Erlang ETags模块: Generate Emacs TAGS file from Erlang source files .

        4
  •  0
  •   CaTFooD    12 年前

    我是一个优秀的2文本用户,发现CTAG在我的电脑中工作正常。我用 ctags plugin 为了崇高的2。


    ->ctags--版本

    Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
    Compiled: Jul 24 2012, 11:45:55
    Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
    Optional compiled features: +wildcards, +regex