The ctags command doesn't recurse saying “it is not a regular file”

后端 未结 2 570
灰色年华
灰色年华 2021-02-01 03:01

When I run ctags -R *, I get errors saying that all directories are not regular files and it skips them instead of recursively generating tags for them.

<         


        
2条回答
  •  别那么骄傲
    2021-02-01 03:06

    It occurs if you have elvis-tools installed . remove them with something like

    sudo apt-get remove elvis-tools 
    

    and then install exuberant-ctags by

    sudo apt-get install exuberant-ctags
    

提交回复
热议问题