zoukankan      html  css  js  c++  java
  • sublime ctags

    Find --> CTags --> Rebuild Tags
     
    Building CTags for /home/zhuangyao/proj/valgrind/valgrind-3.10.1: Please be patient
    error: ctags: no input files specified.
         Try `ctags --help' for a complete list of options.
     
    ctags -f .tags -R *
    ctags: skipping autom4te.cache: it is not a regular file.
    ctags: skipping auxprogs: it is not a regular file.
    ctags: skipping cachegrind: it is not a regular file.
    ctags: skipping callgrind: it is not a regular file.
    ctags: skipping coregrind: it is not a regular file.
    ctags: skipping docs: it is not a regular file.
    使用ctags不正确,使用了emacs带的ctags程序
     
    查看ctags version
    ctags --version
    ctags (GNU Emacs 24.3)
    Copyright (C) 2013 Free Software Foundation, Inc.
    This program is distributed under the terms in ETAGS.README
    正确的应该是
    Exuberant Ctags 5.9~svn20110310, Copyright (C) 1996-2009 Darren Hiebert
      Compiled: Oct  7 2014, 13:52:03
      Addresses: <dhiebert@users.sourceforge.net>, http://ctags.sourceforge.net
      Optional compiled features: +wildcards, +regex
     
    重装Exuberant Ctags 无法更改
     
    设置sublime的ctag user setting
    把command设定为/usr/bin/ctags-exuberant
        // Alter this value if your ctags command is not in the PATH, or if using
        // a different version of ctags to that in the path (i.e. for OSX).
        //
        // NOTE: You *should not* place entire commands here. These commands are
        // built automatically using the values below. For example:
        //   GOOD: "command": "/usr/bin/ctags"
        //   BAD:  "command": "ctags -R -f .tags --exclude=some/path"
        "command": "/usr/bin/ctags-exuberant"
     
  • 相关阅读:
    推荐下自己的开源框架:DataMapFramework
    真的能无师自通吗?JAVA学习指导系列
    再回首,工作的第一个十年
    2个DataSet中的数据传递问题,请高手们多多指教。
    数据结构小结
    CDQZ_Training 2012524 词编码
    PowerDesigner显示Comment注释
    DDD基本元素
    使用FluorineFx.NET更新FMS中的SharedObject
    如何取消页面缓存
  • 原文地址:https://www.cnblogs.com/zelos/p/4687964.html
Copyright © 2011-2022 走看看