File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,10 @@ gotags is a [ctags][]-compatible tag generator for [Go][].
16
16
gotags [options] file(s)
17
17
18
18
-L="": source file names are read from the specified file.
19
- -R=false: recurse into directories in the file list
20
- -silent=false: do not produce any output on error
21
- -sort=true: sort tags
22
- -tree=false: print syntax tree (debugging)
23
- -v=false: print version
19
+ -R=false: recurse into directories in the file list.
20
+ -silent=false: do not produce any output on error.
21
+ -sort=true: sort tags.
22
+ -v=false: print version.
24
23
25
24
## Vim [ Tagbar] [ ] configuration
26
25
@@ -54,7 +53,7 @@ Put the following configuration in your vimrc:
54
53
\ 'ctagsargs' : '-sort -silent'
55
54
\ }
56
55
57
- ### Screenshot
56
+ ### Vim+Tagbar Screenshot
58
57
![ vim Tagbar gotags] ( http://stemmertech.com/images/gotags-1.0.0-screenshot.png )
59
58
60
59
[ ctags ] : http://ctags.sourceforge.net
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ var (
29
29
30
30
// Initialize flags.
31
31
func init () {
32
- flag .BoolVar (& printVersion , "v" , false , "print version" )
32
+ flag .BoolVar (& printVersion , "v" , false , "print version. " )
33
33
flag .StringVar (& inputFile , "L" , "" , "source file names are read from the specified file." )
34
- flag .BoolVar (& recurse , "R" , false , "recurse into directories in the file list" )
35
- flag .BoolVar (& sortOutput , "sort" , true , "sort tags" )
36
- flag .BoolVar (& silent , "silent" , false , "do not produce any output on error" )
34
+ flag .BoolVar (& recurse , "R" , false , "recurse into directories in the file list. " )
35
+ flag .BoolVar (& sortOutput , "sort" , true , "sort tags. " )
36
+ flag .BoolVar (& silent , "silent" , false , "do not produce any output on error. " )
37
37
38
38
flag .Usage = func () {
39
39
fmt .Fprintf (os .Stderr , "gotags version %s\n \n " , Version )
You can’t perform that action at this time.
0 commit comments