Documentation ¶
Overview ¶
Code generated by gen.sh. DO NOT EDIT.
Package ctags provides a Go wrapper for universal-ctags.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var SupportedLanguages = [...]string{
"Basic",
"C",
"C#",
"C++",
"CSS",
"CUDA",
"Clojure",
"Cobol",
"D",
"Elixir",
"Erlang",
"Go",
"GraphQL",
"Groovy",
"Java",
"JavaScript",
"Jsonnet",
"Lisp",
"Lua",
"Markdown",
"MatLab",
"OCaml",
"ObjectiveC",
"PHP",
"Pascal",
"Perl",
"Perl6",
"Powershell",
"Protobuf",
"Python",
"R",
"Ruby",
"Rust",
"Scheme",
"Sh",
"SystemVerilog",
"Tcl",
"Thrift",
"VHDL",
"Verilog",
"Vim",
"elm",
"haskell",
"kotlin",
"scala",
"swift",
"tsx",
"typescript",
}
Functions ¶
Types ¶
type Options ¶
type Options struct { // Bin is the command to run. Defaults to "universal-ctags" if empty. Bin string // PatternLengthLimit is the cutoff length of the patterns output by // ctags. (--pattern-length-limit). If 0 defaults to 255. // // Note: --pattern-length-limit=0 disables this in universal-ctags. We don't // allow disabling it. PatternLengthLimit int // Info if non-nil will log info messages Info *log.Logger // Debug if non-nil will log debug messages Debug *log.Logger }
Click to show internal directories.
Click to hide internal directories.