]> gitweb.factorcode.org Git - factor.git/blob - extra/ctags/etags/etags-docs.factor
factor: trim using lists
[factor.git] / extra / ctags / etags / etags-docs.factor
1 USING: help.markup help.syntax strings ;
2 IN: ctags.etags
3
4 ARTICLE: "etags" "Etags file"
5 { $emphasis "Etags" } " generates a index file of every factor word in etags format as supported by emacs and other editors. More information can be found at " { $url "http://en.wikipedia.org/wiki/Ctags#Etags_2" } "."
6 { $subsections
7     etags
8     write-etags
9 } ;
10
11 HELP: write-etags
12 { $values { "path" string } }
13 { $description "Generates a index file in etags format and stores in " { $snippet "path" } "." }
14 { $examples
15   { $unchecked-example
16     "USING: ctags.etags ;"
17     "\"ETAGS\" etags"
18     ""
19   }
20 } ;
21
22 ABOUT: "etags"