2017-07-24 77 views
0

使用Arch Linux,我安裝了Ctag 5.8。Exuberant Ctags 5.8爲特定項目生成不完整的標籤文件

轉到項目有這樣的結構:

. 
├── apply 
│   └── apply.go 
├── calculate 
│   └── calculate.go 
├── coupon.sqlite3 
├── Godeps 
│   ├── Godeps.json 
│   └── Readme 
├── main.go 
├── Makefile 
├── models 
│   ├── cupom.go 
│   ├── errorMessage.go 
│   └── product.go 
├── ping 
│   └── ping.go 
├── README.md 
├── routes 
│   └── routes.go 
├── tags 
├── tests 
│   ├── apply_test.go 
│   ├── calculate_test.go 
│   ├── config.go 
│   ├── coupon.sqlite3 
│   └── fixtures 
│    └── calculate.go 

運行命令ctags -Rctags -R .我已經產生了tags文件,但僅此內容。

!_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 /[email protected]/ 
!_TAG_PROGRAM_NAME Exuberant Ctags // 
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ 
!_TAG_PROGRAM_VERSION 5.8 // 

在其他項目上運行相同的命令會正確生成tags文件。

回答

相關問題