Hana 9e216da9ef go.mod: add go.mod and move pygments to third_party
After go1.16, go will use module mode by default,
even when the repository is checked out under GOPATH
or in a one-off directory. Add go.mod, go.sum to keep
this repo buildable without opting out of the module
mode.

> go mod init github.com/mmcgrana/gobyexample
> go mod tidy
> go mod vendor

In module mode, the 'vendor' directory is special
and its contents will be actively maintained by the
go command. pygments aren't the dependency the go will
know about, so it will delete the contents from vendor
directory. Move it to `third_party` directory now.

And, vendor the blackfriday package.

Note: the tutorial contents are not affected by the
change in go1.16 because all the examples in this
tutorial ask users to run the go command with the
explicit list of files to be compiled (e.g.
`go run hello-world.go` or `go build command-line-arguments.go`).
When the source list is provided, the go command does
not have to compute the build list and whether it's
running in GOPATH mode or module mode becomes irrelevant.
2021-02-15 16:45:26 -05:00

788 lines
23 KiB
Plaintext

.hgignore
.hgtags
AUTHORS
CHANGES
LICENSE
MANIFEST.in
Makefile
README.rst
TODO
ez_setup.py
pygmentize
requirements.txt
setup.cfg
setup.py
tox.ini
Pygments.egg-info/PKG-INFO
Pygments.egg-info/SOURCES.txt
Pygments.egg-info/dependency_links.txt
Pygments.egg-info/entry_points.txt
Pygments.egg-info/not-zip-safe
Pygments.egg-info/top_level.txt
doc/Makefile
doc/conf.py
doc/download.rst
doc/faq.rst
doc/index.rst
doc/languages.rst
doc/make.bat
doc/pygmentize.1
doc/_static/favicon.ico
doc/_static/logo_new.png
doc/_static/logo_only.png
doc/_templates/docssidebar.html
doc/_templates/indexsidebar.html
doc/_themes/pygments14/layout.html
doc/_themes/pygments14/theme.conf
doc/_themes/pygments14/static/bodybg.png
doc/_themes/pygments14/static/docbg.png
doc/_themes/pygments14/static/listitem.png
doc/_themes/pygments14/static/logo.png
doc/_themes/pygments14/static/pocoo.png
doc/_themes/pygments14/static/pygments14.css_t
doc/docs/api.rst
doc/docs/authors.rst
doc/docs/changelog.rst
doc/docs/cmdline.rst
doc/docs/filterdevelopment.rst
doc/docs/filters.rst
doc/docs/formatterdevelopment.rst
doc/docs/formatters.rst
doc/docs/index.rst
doc/docs/integrate.rst
doc/docs/java.rst
doc/docs/lexerdevelopment.rst
doc/docs/lexers.rst
doc/docs/moinmoin.rst
doc/docs/plugins.rst
doc/docs/quickstart.rst
doc/docs/rstdirective.rst
doc/docs/styles.rst
doc/docs/tokens.rst
doc/docs/unicode.rst
external/autopygmentize
external/lasso-builtins-generator-9.lasso
external/markdown-processor.py
external/moin-parser.py
external/pygments.bashcomp
external/rst-directive.py
pygments/__init__.py
pygments/cmdline.py
pygments/console.py
pygments/filter.py
pygments/formatter.py
pygments/lexer.py
pygments/modeline.py
pygments/plugin.py
pygments/regexopt.py
pygments/scanner.py
pygments/sphinxext.py
pygments/style.py
pygments/token.py
pygments/unistring.py
pygments/util.py
pygments/filters/__init__.py
pygments/formatters/__init__.py
pygments/formatters/_mapping.py
pygments/formatters/bbcode.py
pygments/formatters/html.py
pygments/formatters/img.py
pygments/formatters/irc.py
pygments/formatters/latex.py
pygments/formatters/other.py
pygments/formatters/rtf.py
pygments/formatters/svg.py
pygments/formatters/terminal.py
pygments/formatters/terminal256.py
pygments/lexers/__init__.py
pygments/lexers/_asy_builtins.py
pygments/lexers/_cl_builtins.py
pygments/lexers/_cocoa_builtins.py
pygments/lexers/_csound_builtins.py
pygments/lexers/_lasso_builtins.py
pygments/lexers/_lua_builtins.py
pygments/lexers/_mapping.py
pygments/lexers/_mql_builtins.py
pygments/lexers/_openedge_builtins.py
pygments/lexers/_php_builtins.py
pygments/lexers/_postgres_builtins.py
pygments/lexers/_scilab_builtins.py
pygments/lexers/_sourcemod_builtins.py
pygments/lexers/_stan_builtins.py
pygments/lexers/_vim_builtins.py
pygments/lexers/actionscript.py
pygments/lexers/agile.py
pygments/lexers/algebra.py
pygments/lexers/ambient.py
pygments/lexers/apl.py
pygments/lexers/archetype.py
pygments/lexers/asm.py
pygments/lexers/automation.py
pygments/lexers/basic.py
pygments/lexers/business.py
pygments/lexers/c_cpp.py
pygments/lexers/c_like.py
pygments/lexers/chapel.py
pygments/lexers/compiled.py
pygments/lexers/configs.py
pygments/lexers/console.py
pygments/lexers/csound.py
pygments/lexers/css.py
pygments/lexers/d.py
pygments/lexers/dalvik.py
pygments/lexers/data.py
pygments/lexers/diff.py
pygments/lexers/dotnet.py
pygments/lexers/dsls.py
pygments/lexers/dylan.py
pygments/lexers/ecl.py
pygments/lexers/eiffel.py
pygments/lexers/elm.py
pygments/lexers/erlang.py
pygments/lexers/esoteric.py
pygments/lexers/ezhil.py
pygments/lexers/factor.py
pygments/lexers/fantom.py
pygments/lexers/felix.py
pygments/lexers/fortran.py
pygments/lexers/foxpro.py
pygments/lexers/functional.py
pygments/lexers/go.py
pygments/lexers/grammar_notation.py
pygments/lexers/graph.py
pygments/lexers/graphics.py
pygments/lexers/haskell.py
pygments/lexers/haxe.py
pygments/lexers/hdl.py
pygments/lexers/hexdump.py
pygments/lexers/html.py
pygments/lexers/idl.py
pygments/lexers/igor.py
pygments/lexers/inferno.py
pygments/lexers/installers.py
pygments/lexers/int_fiction.py
pygments/lexers/iolang.py
pygments/lexers/j.py
pygments/lexers/javascript.py
pygments/lexers/julia.py
pygments/lexers/jvm.py
pygments/lexers/lisp.py
pygments/lexers/make.py
pygments/lexers/markup.py
pygments/lexers/math.py
pygments/lexers/matlab.py
pygments/lexers/ml.py
pygments/lexers/modeling.py
pygments/lexers/modula2.py
pygments/lexers/nimrod.py
pygments/lexers/nit.py
pygments/lexers/nix.py
pygments/lexers/oberon.py
pygments/lexers/objective.py
pygments/lexers/ooc.py
pygments/lexers/other.py
pygments/lexers/parasail.py
pygments/lexers/parsers.py
pygments/lexers/pascal.py
pygments/lexers/pawn.py
pygments/lexers/perl.py
pygments/lexers/php.py
pygments/lexers/praat.py
pygments/lexers/prolog.py
pygments/lexers/python.py
pygments/lexers/qvt.py
pygments/lexers/r.py
pygments/lexers/rdf.py
pygments/lexers/rebol.py
pygments/lexers/resource.py
pygments/lexers/roboconf.py
pygments/lexers/robotframework.py
pygments/lexers/ruby.py
pygments/lexers/rust.py
pygments/lexers/scripting.py
pygments/lexers/shell.py
pygments/lexers/smalltalk.py
pygments/lexers/snobol.py
pygments/lexers/special.py
pygments/lexers/sql.py
pygments/lexers/supercollider.py
pygments/lexers/tcl.py
pygments/lexers/templates.py
pygments/lexers/testing.py
pygments/lexers/text.py
pygments/lexers/textedit.py
pygments/lexers/textfmts.py
pygments/lexers/theorem.py
pygments/lexers/trafficscript.py
pygments/lexers/urbi.py
pygments/lexers/web.py
pygments/lexers/webmisc.py
pygments/lexers/x10.py
pygments/styles/__init__.py
pygments/styles/algol.py
pygments/styles/algol_nu.py
pygments/styles/arduino.py
pygments/styles/autumn.py
pygments/styles/borland.py
pygments/styles/bw.py
pygments/styles/colorful.py
pygments/styles/default.py
pygments/styles/emacs.py
pygments/styles/friendly.py
pygments/styles/fruity.py
pygments/styles/igor.py
pygments/styles/lovelace.py
pygments/styles/manni.py
pygments/styles/monokai.py
pygments/styles/murphy.py
pygments/styles/native.py
pygments/styles/paraiso_dark.py
pygments/styles/paraiso_light.py
pygments/styles/pastie.py
pygments/styles/perldoc.py
pygments/styles/rrt.py
pygments/styles/tango.py
pygments/styles/trac.py
pygments/styles/vim.py
pygments/styles/vs.py
pygments/styles/xcode.py
scripts/check_sources.py
scripts/debug_lexer.py
scripts/detect_missing_analyse_text.py
scripts/epydoc.css
scripts/find_error.py
scripts/get_vimkw.py
scripts/pylintrc
scripts/vim2pygments.py
tests/.coverage
tests/run.py
tests/string_asserts.py
tests/string_asserts.pyc
tests/support.py
tests/support.pyc
tests/test_basic_api.py
tests/test_basic_api.pyc
tests/test_cfm.py
tests/test_cfm.pyc
tests/test_clexer.py
tests/test_clexer.pyc
tests/test_cmdline.py
tests/test_cmdline.pyc
tests/test_examplefiles.py
tests/test_examplefiles.pyc
tests/test_ezhil.py
tests/test_ezhil.pyc
tests/test_html_formatter.py
tests/test_html_formatter.pyc
tests/test_inherit.py
tests/test_inherit.pyc
tests/test_irc_formatter.py
tests/test_irc_formatter.pyc
tests/test_java.py
tests/test_java.pyc
tests/test_latex_formatter.py
tests/test_latex_formatter.pyc
tests/test_lexers_other.py
tests/test_lexers_other.pyc
tests/test_objectiveclexer.py
tests/test_objectiveclexer.pyc
tests/test_perllexer.py
tests/test_perllexer.pyc
tests/test_qbasiclexer.py
tests/test_qbasiclexer.pyc
tests/test_regexlexer.py
tests/test_regexlexer.pyc
tests/test_regexopt.py
tests/test_regexopt.pyc
tests/test_rtf_formatter.py
tests/test_rtf_formatter.pyc
tests/test_ruby.py
tests/test_ruby.pyc
tests/test_shell.py
tests/test_shell.pyc
tests/test_smarty.py
tests/test_smarty.pyc
tests/test_string_asserts.py
tests/test_string_asserts.pyc
tests/test_terminal_formatter.py
tests/test_terminal_formatter.pyc
tests/test_textfmts.py
tests/test_textfmts.pyc
tests/test_token.py
tests/test_token.pyc
tests/test_unistring.py
tests/test_unistring.pyc
tests/test_using_api.py
tests/test_using_api.pyc
tests/test_util.py
tests/test_util.pyc
tests/__pycache__/string_asserts.cpython-33.pyc
tests/__pycache__/string_asserts.cpython-35.pyc
tests/__pycache__/support.cpython-33.pyc
tests/__pycache__/support.cpython-35.pyc
tests/__pycache__/test_basic_api.cpython-33.pyc
tests/__pycache__/test_basic_api.cpython-35.pyc
tests/__pycache__/test_cfm.cpython-33.pyc
tests/__pycache__/test_cfm.cpython-35.pyc
tests/__pycache__/test_clexer.cpython-33.pyc
tests/__pycache__/test_clexer.cpython-35.pyc
tests/__pycache__/test_cmdline.cpython-33.pyc
tests/__pycache__/test_cmdline.cpython-35.pyc
tests/__pycache__/test_examplefiles.cpython-33.pyc
tests/__pycache__/test_examplefiles.cpython-35.pyc
tests/__pycache__/test_ezhil.cpython-35.pyc
tests/__pycache__/test_html_formatter.cpython-33.pyc
tests/__pycache__/test_html_formatter.cpython-35.pyc
tests/__pycache__/test_inherit.cpython-33.pyc
tests/__pycache__/test_inherit.cpython-35.pyc
tests/__pycache__/test_irc_formatter.cpython-35.pyc
tests/__pycache__/test_java.cpython-33.pyc
tests/__pycache__/test_java.cpython-35.pyc
tests/__pycache__/test_latex_formatter.cpython-33.pyc
tests/__pycache__/test_latex_formatter.cpython-35.pyc
tests/__pycache__/test_lexers_other.cpython-33.pyc
tests/__pycache__/test_lexers_other.cpython-35.pyc
tests/__pycache__/test_objectiveclexer.cpython-33.pyc
tests/__pycache__/test_objectiveclexer.cpython-35.pyc
tests/__pycache__/test_perllexer.cpython-33.pyc
tests/__pycache__/test_perllexer.cpython-35.pyc
tests/__pycache__/test_qbasiclexer.cpython-33.pyc
tests/__pycache__/test_qbasiclexer.cpython-35.pyc
tests/__pycache__/test_regexlexer.cpython-33.pyc
tests/__pycache__/test_regexlexer.cpython-35.pyc
tests/__pycache__/test_regexopt.cpython-33.pyc
tests/__pycache__/test_regexopt.cpython-35.pyc
tests/__pycache__/test_rtf_formatter.cpython-33.pyc
tests/__pycache__/test_rtf_formatter.cpython-35.pyc
tests/__pycache__/test_ruby.cpython-33.pyc
tests/__pycache__/test_ruby.cpython-35.pyc
tests/__pycache__/test_shell.cpython-33.pyc
tests/__pycache__/test_shell.cpython-35.pyc
tests/__pycache__/test_smarty.cpython-33.pyc
tests/__pycache__/test_smarty.cpython-35.pyc
tests/__pycache__/test_string_asserts.cpython-33.pyc
tests/__pycache__/test_string_asserts.cpython-35.pyc
tests/__pycache__/test_terminal_formatter.cpython-35.pyc
tests/__pycache__/test_textfmts.cpython-33.pyc
tests/__pycache__/test_textfmts.cpython-35.pyc
tests/__pycache__/test_token.cpython-33.pyc
tests/__pycache__/test_token.cpython-35.pyc
tests/__pycache__/test_unistring.cpython-33.pyc
tests/__pycache__/test_unistring.cpython-35.pyc
tests/__pycache__/test_using_api.cpython-33.pyc
tests/__pycache__/test_using_api.cpython-35.pyc
tests/__pycache__/test_util.cpython-33.pyc
tests/__pycache__/test_util.cpython-35.pyc
tests/cover/coverage_html.js
tests/cover/jquery.hotkeys.js
tests/cover/jquery.isonscreen.js
tests/cover/jquery.min.js
tests/cover/jquery.tablesorter.min.js
tests/cover/keybd_closed.png
tests/cover/keybd_open.png
tests/cover/status.dat
tests/cover/style.css
tests/dtds/HTML4-f.dtd
tests/dtds/HTML4-s.dtd
tests/dtds/HTML4.dcl
tests/dtds/HTML4.dtd
tests/dtds/HTML4.soc
tests/dtds/HTMLlat1.ent
tests/dtds/HTMLspec.ent
tests/dtds/HTMLsym.ent
tests/examplefiles/99_bottles_of_beer.chpl
tests/examplefiles/AcidStateAdvanced.hs
tests/examplefiles/AlternatingGroup.mu
tests/examplefiles/BOM.js
tests/examplefiles/Blink.ino
tests/examplefiles/CPDictionary.j
tests/examplefiles/Config.in.cache
tests/examplefiles/Constants.mo
tests/examplefiles/DancingSudoku.lhs
tests/examplefiles/Deflate.fs
tests/examplefiles/Error.pmod
tests/examplefiles/Errors.scala
tests/examplefiles/FakeFile.pike
tests/examplefiles/Get-CommandDefinitionHtml.ps1
tests/examplefiles/IPDispatchC.nc
tests/examplefiles/IPDispatchP.nc
tests/examplefiles/Intro.java
tests/examplefiles/Makefile
tests/examplefiles/Object.st
tests/examplefiles/OrderedMap.hx
tests/examplefiles/RoleQ.pm6
tests/examplefiles/SmallCheck.hs
tests/examplefiles/Sorting.mod
tests/examplefiles/Sudoku.lhs
tests/examplefiles/abnf_example1.abnf
tests/examplefiles/abnf_example2.abnf
tests/examplefiles/addressbook.proto
tests/examplefiles/ahcon.f
tests/examplefiles/all.nit
tests/examplefiles/antlr_ANTLRv3.g
tests/examplefiles/antlr_throws
tests/examplefiles/apache2.conf
tests/examplefiles/as3_test.as
tests/examplefiles/as3_test2.as
tests/examplefiles/as3_test3.as
tests/examplefiles/aspx-cs_example
tests/examplefiles/autoit_submit.au3
tests/examplefiles/automake.mk
tests/examplefiles/badcase.java
tests/examplefiles/bigtest.nsi
tests/examplefiles/bnf_example1.bnf
tests/examplefiles/boot-9.scm
tests/examplefiles/ca65_example
tests/examplefiles/cbmbas_example
tests/examplefiles/cells.ps
tests/examplefiles/ceval.c
tests/examplefiles/char.scala
tests/examplefiles/cheetah_example.html
tests/examplefiles/classes.dylan
tests/examplefiles/clojure-weird-keywords.clj
tests/examplefiles/condensed_ruby.rb
tests/examplefiles/coq_RelationClasses
tests/examplefiles/core.cljs
tests/examplefiles/database.pytb
tests/examplefiles/de.MoinMoin.po
tests/examplefiles/demo.ahk
tests/examplefiles/demo.cfm
tests/examplefiles/demo.css.in
tests/examplefiles/demo.hbs
tests/examplefiles/demo.js.in
tests/examplefiles/demo.thrift
tests/examplefiles/demo.xul.in
tests/examplefiles/django_sample.html+django
tests/examplefiles/docker.docker
tests/examplefiles/dwarf.cw
tests/examplefiles/eg_example1.eg
tests/examplefiles/ember.handlebars
tests/examplefiles/erl_session
tests/examplefiles/es6.js
tests/examplefiles/escape_semicolon.clj
tests/examplefiles/eval.rs
tests/examplefiles/evil_regex.js
tests/examplefiles/example.Rd
tests/examplefiles/example.als
tests/examplefiles/example.bat
tests/examplefiles/example.bc
tests/examplefiles/example.bug
tests/examplefiles/example.c
tests/examplefiles/example.ceylon
tests/examplefiles/example.chai
tests/examplefiles/example.clay
tests/examplefiles/example.cls
tests/examplefiles/example.cob
tests/examplefiles/example.coffee
tests/examplefiles/example.cpp
tests/examplefiles/example.e
tests/examplefiles/example.elm
tests/examplefiles/example.ezt
tests/examplefiles/example.f90
tests/examplefiles/example.feature
tests/examplefiles/example.fish
tests/examplefiles/example.gd
tests/examplefiles/example.gi
tests/examplefiles/example.golo
tests/examplefiles/example.groovy
tests/examplefiles/example.gs
tests/examplefiles/example.gst
tests/examplefiles/example.hs
tests/examplefiles/example.hx
tests/examplefiles/example.i6t
tests/examplefiles/example.i7x
tests/examplefiles/example.j
tests/examplefiles/example.jag
tests/examplefiles/example.java
tests/examplefiles/example.jcl
tests/examplefiles/example.jsonld
tests/examplefiles/example.kal
tests/examplefiles/example.kt
tests/examplefiles/example.lagda
tests/examplefiles/example.liquid
tests/examplefiles/example.lua
tests/examplefiles/example.ma
tests/examplefiles/example.mac
tests/examplefiles/example.monkey
tests/examplefiles/example.moo
tests/examplefiles/example.moon
tests/examplefiles/example.mq4
tests/examplefiles/example.mqh
tests/examplefiles/example.msc
tests/examplefiles/example.ni
tests/examplefiles/example.nim
tests/examplefiles/example.nix
tests/examplefiles/example.ns2
tests/examplefiles/example.pas
tests/examplefiles/example.pcmk
tests/examplefiles/example.pp
tests/examplefiles/example.praat
tests/examplefiles/example.prg
tests/examplefiles/example.rb
tests/examplefiles/example.red
tests/examplefiles/example.reds
tests/examplefiles/example.reg
tests/examplefiles/example.rexx
tests/examplefiles/example.rhtml
tests/examplefiles/example.rkt
tests/examplefiles/example.rpf
tests/examplefiles/example.rts
tests/examplefiles/example.scd
tests/examplefiles/example.sh
tests/examplefiles/example.sh-session
tests/examplefiles/example.shell-session
tests/examplefiles/example.slim
tests/examplefiles/example.sls
tests/examplefiles/example.sml
tests/examplefiles/example.snobol
tests/examplefiles/example.stan
tests/examplefiles/example.tap
tests/examplefiles/example.tea
tests/examplefiles/example.tf
tests/examplefiles/example.thy
tests/examplefiles/example.todotxt
tests/examplefiles/example.ts
tests/examplefiles/example.ttl
tests/examplefiles/example.u
tests/examplefiles/example.weechatlog
tests/examplefiles/example.x10
tests/examplefiles/example.xhtml
tests/examplefiles/example.xtend
tests/examplefiles/example.yaml
tests/examplefiles/example1.cadl
tests/examplefiles/example2.aspx
tests/examplefiles/example2.msc
tests/examplefiles/exampleScript.cfc
tests/examplefiles/exampleTag.cfc
tests/examplefiles/example_coq.v
tests/examplefiles/example_elixir.ex
tests/examplefiles/example_file.fy
tests/examplefiles/ezhil_primefactors.n
tests/examplefiles/firefox.mak
tests/examplefiles/flipflop.sv
tests/examplefiles/foo.sce
tests/examplefiles/format.ml
tests/examplefiles/fucked_up.rb
tests/examplefiles/function.mu
tests/examplefiles/functional.rst
tests/examplefiles/garcia-wachs.kk
tests/examplefiles/genclass.clj
tests/examplefiles/genshi_example.xml+genshi
tests/examplefiles/genshitext_example.genshitext
tests/examplefiles/glsl.frag
tests/examplefiles/glsl.vert
tests/examplefiles/grammar-test.p6
tests/examplefiles/hash_syntax.rb
tests/examplefiles/hello.at
tests/examplefiles/hello.golo
tests/examplefiles/hello.lsl
tests/examplefiles/hello.smali
tests/examplefiles/hello.sp
tests/examplefiles/hexdump_debugexe
tests/examplefiles/hexdump_hd
tests/examplefiles/hexdump_hexcat
tests/examplefiles/hexdump_hexdump
tests/examplefiles/hexdump_od
tests/examplefiles/hexdump_xxd
tests/examplefiles/html+php_faulty.php
tests/examplefiles/http_request_example
tests/examplefiles/http_response_example
tests/examplefiles/hybris_File.hy
tests/examplefiles/idl_sample.pro
tests/examplefiles/iex_example
tests/examplefiles/inet_pton6.dg
tests/examplefiles/inform6_example
tests/examplefiles/interp.scala
tests/examplefiles/intro.ik
tests/examplefiles/ints.php
tests/examplefiles/intsyn.fun
tests/examplefiles/intsyn.sig
tests/examplefiles/irb_heredoc
tests/examplefiles/irc.lsp
tests/examplefiles/java.properties
tests/examplefiles/jbst_example1.jbst
tests/examplefiles/jbst_example2.jbst
tests/examplefiles/jinjadesignerdoc.rst
tests/examplefiles/json.lasso
tests/examplefiles/json.lasso9
tests/examplefiles/language.hy
tests/examplefiles/lighttpd_config.conf
tests/examplefiles/limbo.b
tests/examplefiles/linecontinuation.py
tests/examplefiles/livescript-demo.ls
tests/examplefiles/logos_example.xm
tests/examplefiles/ltmain.sh
tests/examplefiles/main.cmake
tests/examplefiles/markdown.lsp
tests/examplefiles/matlab_noreturn
tests/examplefiles/matlab_sample
tests/examplefiles/matlabsession_sample.txt
tests/examplefiles/metagrammar.treetop
tests/examplefiles/minehunt.qml
tests/examplefiles/minimal.ns2
tests/examplefiles/modula2_test_cases.def
tests/examplefiles/moin_SyntaxReference.txt
tests/examplefiles/multiline_regexes.rb
tests/examplefiles/nanomsg.intr
tests/examplefiles/nasm_aoutso.asm
tests/examplefiles/nasm_objexe.asm
tests/examplefiles/nemerle_sample.n
tests/examplefiles/nginx_nginx.conf
tests/examplefiles/noexcept.cpp
tests/examplefiles/numbers.c
tests/examplefiles/objc_example.m
tests/examplefiles/openedge_example
tests/examplefiles/pacman.conf
tests/examplefiles/pacman.ijs
tests/examplefiles/pawn_example
tests/examplefiles/perl_misc
tests/examplefiles/perl_perl5db
tests/examplefiles/perl_regex-delims
tests/examplefiles/perlfunc.1
tests/examplefiles/phpMyAdmin.spec
tests/examplefiles/phpcomplete.vim
tests/examplefiles/pkgconfig_example.pc
tests/examplefiles/pleac.in.rb
tests/examplefiles/postgresql_test.txt
tests/examplefiles/pppoe.applescript
tests/examplefiles/psql_session.txt
tests/examplefiles/py3_test.txt
tests/examplefiles/py3tb_test.py3tb
tests/examplefiles/pycon_ctrlc_traceback
tests/examplefiles/pycon_test.pycon
tests/examplefiles/pytb_test2.pytb
tests/examplefiles/pytb_test3.pytb
tests/examplefiles/python25-bsd.mak
tests/examplefiles/qbasic_example
tests/examplefiles/qsort.prolog
tests/examplefiles/r-console-transcript.Rout
tests/examplefiles/r6rs-comments.scm
tests/examplefiles/ragel-cpp_rlscan
tests/examplefiles/ragel-cpp_snippet
tests/examplefiles/regex.js
tests/examplefiles/resourcebundle_demo
tests/examplefiles/reversi.lsp
tests/examplefiles/roboconf.graph
tests/examplefiles/roboconf.instances
tests/examplefiles/robotframework_test.txt
tests/examplefiles/rql-queries.rql
tests/examplefiles/ruby_func_def.rb
tests/examplefiles/sample.qvto
tests/examplefiles/scilab.sci
tests/examplefiles/scope.cirru
tests/examplefiles/session.dylan-console
tests/examplefiles/sibling.prolog
tests/examplefiles/simple.camkes
tests/examplefiles/simple.croc
tests/examplefiles/smarty_example.html
tests/examplefiles/source.lgt
tests/examplefiles/sources.list
tests/examplefiles/sparql.rq
tests/examplefiles/sphere.pov
tests/examplefiles/sqlite3.sqlite3-console
tests/examplefiles/squid.conf
tests/examplefiles/string.jl
tests/examplefiles/string_delimiters.d
tests/examplefiles/stripheredoc.sh
tests/examplefiles/subr.el
tests/examplefiles/swig_java.swg
tests/examplefiles/swig_std_vector.i
tests/examplefiles/tads3_example.t
tests/examplefiles/termcap
tests/examplefiles/terminfo
tests/examplefiles/test-3.0.xq
tests/examplefiles/test-exist-update.xq
tests/examplefiles/test.R
tests/examplefiles/test.adb
tests/examplefiles/test.adls
tests/examplefiles/test.agda
tests/examplefiles/test.apl
tests/examplefiles/test.asy
tests/examplefiles/test.awk
tests/examplefiles/test.bb
tests/examplefiles/test.bmx
tests/examplefiles/test.boo
tests/examplefiles/test.bpl
tests/examplefiles/test.bro
tests/examplefiles/test.cadl
tests/examplefiles/test.cs
tests/examplefiles/test.csd
tests/examplefiles/test.css
tests/examplefiles/test.cu
tests/examplefiles/test.cyp
tests/examplefiles/test.d
tests/examplefiles/test.dart
tests/examplefiles/test.dtd
tests/examplefiles/test.ebnf
tests/examplefiles/test.ec
tests/examplefiles/test.eh
tests/examplefiles/test.erl
tests/examplefiles/test.evoque
tests/examplefiles/test.fan
tests/examplefiles/test.flx
tests/examplefiles/test.gdc
tests/examplefiles/test.gradle
tests/examplefiles/test.groovy
tests/examplefiles/test.html
tests/examplefiles/test.idr
tests/examplefiles/test.ini
tests/examplefiles/test.java
tests/examplefiles/test.jsp
tests/examplefiles/test.lean
tests/examplefiles/test.maql
tests/examplefiles/test.mask
tests/examplefiles/test.mod
tests/examplefiles/test.moo
tests/examplefiles/test.myt
tests/examplefiles/test.nim
tests/examplefiles/test.odin
tests/examplefiles/test.opa
tests/examplefiles/test.orc
tests/examplefiles/test.p6
tests/examplefiles/test.pan
tests/examplefiles/test.pas
tests/examplefiles/test.php
tests/examplefiles/test.pig
tests/examplefiles/test.plot
tests/examplefiles/test.ps1
tests/examplefiles/test.psl
tests/examplefiles/test.pwn
tests/examplefiles/test.pypylog
tests/examplefiles/test.r3
tests/examplefiles/test.rb
tests/examplefiles/test.rhtml
tests/examplefiles/test.rsl
tests/examplefiles/test.scaml
tests/examplefiles/test.sco
tests/examplefiles/test.shen
tests/examplefiles/test.ssp
tests/examplefiles/test.swift
tests/examplefiles/test.tcsh
tests/examplefiles/test.vb
tests/examplefiles/test.vhdl
tests/examplefiles/test.xqy
tests/examplefiles/test.xsl
tests/examplefiles/test.zep
tests/examplefiles/test2.odin
tests/examplefiles/test2.pypylog
tests/examplefiles/test_basic.adls
tests/examplefiles/truncated.pytb
tests/examplefiles/twig_test
tests/examplefiles/type.lisp
tests/examplefiles/underscore.coffee
tests/examplefiles/unicode.applescript
tests/examplefiles/unicode.go
tests/examplefiles/unicode.js
tests/examplefiles/unicodedoc.py
tests/examplefiles/unix-io.lid
tests/examplefiles/vbnet_test.bas
tests/examplefiles/vctreestatus_hg
tests/examplefiles/vimrc
tests/examplefiles/vpath.mk
tests/examplefiles/webkit-transition.css
tests/examplefiles/while.pov
tests/examplefiles/wiki.factor
tests/examplefiles/xml_example
tests/examplefiles/yahalom.cpsa
tests/examplefiles/zmlrpc.f90
tests/support/tags