gitextract_65sk4665/ ├── .cargo/ │ └── audit.toml ├── .envrc ├── .github/ │ ├── .codecov.yml │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ ├── question.md │ │ └── syntax_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── CICD.yml │ └── require-changelog-for-PRs.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── NOTICE ├── README.md ├── SECURITY.md ├── assets/ │ ├── .gitattributes │ ├── .ignore │ ├── completions/ │ │ ├── _bat.ps1.in │ │ ├── bat.bash.in │ │ ├── bat.fish.in │ │ └── bat.zsh.in │ ├── create.sh │ ├── manual/ │ │ └── bat.1.in │ ├── patches/ │ │ ├── 1337.tmTheme.patch │ │ ├── C#.sublime-syntax.patch │ │ ├── Groff.sublime-syntax.patch │ │ ├── JavaDoc.sublime-syntax.patch │ │ ├── JavaScript.sublime-syntax.patch │ │ ├── Lisp.sublime-syntax.patch │ │ ├── Makefile.sublime-syntax.patch │ │ ├── Markdown.sublime-syntax.patch │ │ ├── MediaWiki.sublime-syntax.patch │ │ ├── Monokai-Extended.tmTheme.patch │ │ ├── OneHalfDark.tmTheme.patch │ │ ├── Python.sublime-syntax.patch │ │ ├── Rust.sublime-syntax.patch │ │ ├── ShellScript.sublime-syntax.patch │ │ ├── TodoTxt.sublime-syntax.patch │ │ ├── TwoDark.tmTheme.patch │ │ └── XML.sublime-syntax.patch │ ├── syntaxes/ │ │ └── 02_Extra/ │ │ ├── Apache.sublime-syntax │ │ ├── AsciiDoc.sublime-syntax │ │ ├── Assembly (ARM).sublime-syntax │ │ ├── Assembly (x86_64).sublime-syntax │ │ ├── CSV/ │ │ │ ├── CSV-comma.sublime-syntax │ │ │ ├── CSV-pipe.sublime-syntax │ │ │ ├── CSV-semi-colon.sublime-syntax │ │ │ ├── CSV.sublime-syntax │ │ │ └── TSV.sublime-syntax │ │ ├── Cabal.sublime-syntax │ │ ├── CoffeeScript.sublime-syntax │ │ ├── CpuInfo.sublime-syntax │ │ ├── Crystal.sublime-syntax │ │ ├── Dart.sublime-syntax │ │ ├── DotENV.sublime-syntax │ │ ├── Fstab.sublime-syntax │ │ ├── Group.sublime-syntax │ │ ├── HTML (Twig).sublime-syntax │ │ ├── INI.sublime-syntax │ │ ├── JavaScript (Babel).sublime-syntax │ │ ├── Kotlin.sublime-syntax │ │ ├── Lean.sublime-syntax │ │ ├── LiveScript.sublime-syntax │ │ ├── Manpage.sublime-syntax │ │ ├── MemInfo.sublime-syntax │ │ ├── Nim.sublime-syntax │ │ ├── Ninja.sublime-syntax │ │ ├── Nix.sublime-syntax │ │ ├── Org mode.sublime-syntax │ │ ├── Passwd.sublime-syntax │ │ ├── PowerShell.sublime-syntax │ │ ├── QML.sublime-syntax │ │ ├── Racket.sublime-syntax │ │ ├── Rego.sublime-syntax │ │ ├── Requirementstxt.sublime-syntax │ │ ├── Resolv.sublime-syntax │ │ ├── Robot.sublime-syntax │ │ ├── SML.sublime-syntax │ │ ├── Slim.sublime-syntax │ │ ├── Stylus.sublime-syntax │ │ ├── Swift.sublime-syntax │ │ ├── TypeScript.sublime-syntax │ │ ├── TypsecriptReact.sublime-syntax │ │ ├── Verilog.sublime-syntax │ │ ├── VimHelp.sublime-syntax │ │ ├── apt-source-list.sublime-syntax │ │ ├── gnuplot.sublime-syntax │ │ ├── log.sublime-syntax │ │ ├── show-nonprintable.sublime-syntax │ │ ├── syntax_test_csv.csv │ │ ├── syntax_test_helphelp.txt │ │ ├── syntax_test_man.man │ │ ├── syntax_test_requirements.txt │ │ ├── syntax_test_tsv.tsv │ │ ├── syslog.sublime-syntax │ │ └── wgsl.sublime-syntax │ ├── theme_preview.rs │ └── themes/ │ ├── ansi.tmTheme │ ├── base16-256.tmTheme │ └── base16.tmTheme ├── build/ │ ├── application.rs │ ├── main.rs │ ├── syntax_mapping.rs │ └── util.rs ├── diagnostics/ │ ├── .gitattributes │ └── info.sh ├── doc/ │ ├── README-ja.md │ ├── README-ko.md │ ├── README-ru.md │ ├── README-zh.md │ ├── alternatives.md │ ├── assets.md │ ├── long-help.txt │ ├── release-checklist.md │ ├── short-help.txt │ └── sponsors.md ├── examples/ │ ├── advanced.rs │ ├── buffer.rs │ ├── cat.rs │ ├── inputs.rs │ ├── list_syntaxes_and_themes.rs │ ├── simple.rs │ └── yaml.rs ├── flake.nix ├── rustfmt.toml ├── src/ │ ├── assets/ │ │ ├── assets_metadata.rs │ │ ├── build_assets/ │ │ │ └── acknowledgements.rs │ │ ├── build_assets.rs │ │ ├── lazy_theme_set.rs │ │ └── serialized_syntax_set.rs │ ├── assets.rs │ ├── bin/ │ │ └── bat/ │ │ ├── app.rs │ │ ├── assets.rs │ │ ├── clap_app.rs │ │ ├── completions.rs │ │ ├── config.rs │ │ ├── directories.rs │ │ ├── input.rs │ │ └── main.rs │ ├── config.rs │ ├── controller.rs │ ├── decorations.rs │ ├── diff.rs │ ├── error.rs │ ├── input.rs │ ├── less.rs │ ├── lessopen.rs │ ├── lib.rs │ ├── line_range.rs │ ├── macros.rs │ ├── nonprintable_notation.rs │ ├── output.rs │ ├── pager.rs │ ├── paging.rs │ ├── preprocessor.rs │ ├── pretty_printer.rs │ ├── printer.rs │ ├── style.rs │ ├── syntax_mapping/ │ │ ├── builtin.rs │ │ ├── builtins/ │ │ │ ├── README.md │ │ │ ├── bsd-family/ │ │ │ │ ├── .gitkeep │ │ │ │ └── 50-os-release.toml │ │ │ ├── common/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── 50-apache.toml │ │ │ │ ├── 50-aws-credentials.toml │ │ │ │ ├── 50-bat.toml │ │ │ │ ├── 50-citation.toml │ │ │ │ ├── 50-container.toml │ │ │ │ ├── 50-cpp.toml │ │ │ │ ├── 50-diff.toml │ │ │ │ ├── 50-dotnet-xml.toml │ │ │ │ ├── 50-f-sharp.toml │ │ │ │ ├── 50-gcloud-cli-config.toml │ │ │ │ ├── 50-git.toml │ │ │ │ ├── 50-json.toml │ │ │ │ ├── 50-markdown.toml │ │ │ │ ├── 50-mill.toml │ │ │ │ ├── 50-nginx.toml │ │ │ │ ├── 50-nix.toml │ │ │ │ ├── 50-nmap.toml │ │ │ │ ├── 50-proxy-auto-config.toml │ │ │ │ ├── 50-ron.toml │ │ │ │ ├── 50-sarif.toml │ │ │ │ ├── 50-ssh.toml │ │ │ │ ├── 90-ignore-files.toml │ │ │ │ ├── 99-unset-ambiguous-extensions.toml │ │ │ │ ├── 99-unset-ambiguous-filenames.toml │ │ │ │ └── xonsh.toml │ │ │ ├── linux/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── 50-containers.toml │ │ │ │ ├── 50-flatpak.toml │ │ │ │ ├── 50-kubernetes.toml │ │ │ │ ├── 50-os-release.toml │ │ │ │ ├── 50-pacman.toml │ │ │ │ ├── 50-paru.toml │ │ │ │ ├── 50-podman-quadlet.toml │ │ │ │ └── 50-systemd.toml │ │ │ ├── macos/ │ │ │ │ └── .gitkeep │ │ │ ├── unix-family/ │ │ │ │ ├── .gitkeep │ │ │ │ ├── 50-apache.toml │ │ │ │ ├── 50-certbot.toml │ │ │ │ ├── 50-fish-shell.toml │ │ │ │ ├── 50-korn-shell.toml │ │ │ │ ├── 50-mail-spool.toml │ │ │ │ ├── 50-nginx.toml │ │ │ │ ├── 50-shell.toml │ │ │ │ ├── 50-syslog.toml │ │ │ │ └── 50-wireguard.toml │ │ │ └── windows/ │ │ │ └── .gitkeep │ │ └── ignored_suffixes.rs │ ├── syntax_mapping.rs │ ├── terminal.rs │ ├── theme.rs │ ├── vscreen.rs │ └── wrapping.rs └── tests/ ├── .gitattributes ├── assets.rs ├── benchmarks/ │ ├── .gitignore │ ├── .ignore │ ├── highlighting-speed-src/ │ │ ├── grep-output-ansi-sequences.txt │ │ ├── jquery.js │ │ ├── miniz.c │ │ └── numpy_test_multiarray.py │ ├── many-small-files/ │ │ ├── small-file-0.txt │ │ ├── small-file-1.txt │ │ ├── small-file-10.txt │ │ ├── small-file-100.txt │ │ ├── small-file-11.txt │ │ ├── small-file-12.txt │ │ ├── small-file-13.txt │ │ ├── small-file-14.txt │ │ ├── small-file-15.txt │ │ ├── small-file-16.txt │ │ ├── small-file-17.txt │ │ ├── small-file-18.txt │ │ ├── small-file-19.txt │ │ ├── small-file-2.txt │ │ ├── small-file-20.txt │ │ ├── small-file-21.txt │ │ ├── small-file-22.txt │ │ ├── small-file-23.txt │ │ ├── small-file-24.txt │ │ ├── small-file-25.txt │ │ ├── small-file-26.txt │ │ ├── small-file-27.txt │ │ ├── small-file-28.txt │ │ ├── small-file-29.txt │ │ ├── small-file-3.txt │ │ ├── small-file-30.txt │ │ ├── small-file-31.txt │ │ ├── small-file-32.txt │ │ ├── small-file-33.txt │ │ ├── small-file-34.txt │ │ ├── small-file-35.txt │ │ ├── small-file-36.txt │ │ ├── small-file-37.txt │ │ ├── small-file-38.txt │ │ ├── small-file-39.txt │ │ ├── small-file-4.txt │ │ ├── small-file-40.txt │ │ ├── small-file-41.txt │ │ ├── small-file-42.txt │ │ ├── small-file-43.txt │ │ ├── small-file-44.txt │ │ ├── small-file-45.txt │ │ ├── small-file-46.txt │ │ ├── small-file-47.txt │ │ ├── small-file-48.txt │ │ ├── small-file-49.txt │ │ ├── small-file-5.txt │ │ ├── small-file-50.txt │ │ ├── small-file-51.txt │ │ ├── small-file-52.txt │ │ ├── small-file-53.txt │ │ ├── small-file-54.txt │ │ ├── small-file-55.txt │ │ ├── small-file-56.txt │ │ ├── small-file-57.txt │ │ ├── small-file-58.txt │ │ ├── small-file-59.txt │ │ ├── small-file-6.txt │ │ ├── small-file-60.txt │ │ ├── small-file-61.txt │ │ ├── small-file-62.txt │ │ ├── small-file-63.txt │ │ ├── small-file-64.txt │ │ ├── small-file-65.txt │ │ ├── small-file-66.txt │ │ ├── small-file-67.txt │ │ ├── small-file-68.txt │ │ ├── small-file-69.txt │ │ ├── small-file-7.txt │ │ ├── small-file-70.txt │ │ ├── small-file-71.txt │ │ ├── small-file-72.txt │ │ ├── small-file-73.txt │ │ ├── small-file-74.txt │ │ ├── small-file-75.txt │ │ ├── small-file-76.txt │ │ ├── small-file-77.txt │ │ ├── small-file-78.txt │ │ ├── small-file-79.txt │ │ ├── small-file-8.txt │ │ ├── small-file-80.txt │ │ ├── small-file-81.txt │ │ ├── small-file-82.txt │ │ ├── small-file-83.txt │ │ ├── small-file-84.txt │ │ ├── small-file-85.txt │ │ ├── small-file-86.txt │ │ ├── small-file-87.txt │ │ ├── small-file-88.txt │ │ ├── small-file-89.txt │ │ ├── small-file-9.txt │ │ ├── small-file-90.txt │ │ ├── small-file-91.txt │ │ ├── small-file-92.txt │ │ ├── small-file-93.txt │ │ ├── small-file-94.txt │ │ ├── small-file-95.txt │ │ ├── small-file-96.txt │ │ ├── small-file-97.txt │ │ ├── small-file-98.txt │ │ └── small-file-99.txt │ ├── run-benchmarks.sh │ └── startup-time-src/ │ ├── Containerfile │ ├── mystery-file │ ├── small-CpuInfo-file.cpuinfo │ └── small-Markdown-file.md ├── examples/ │ ├── bat-tabs.conf │ ├── bat-theme.conf │ ├── bat-windows.conf │ ├── bat.conf │ ├── cache │ ├── cache.c │ ├── cache_source/ │ │ ├── syntaxes/ │ │ │ └── c.sublime-syntax │ │ └── themes/ │ │ └── example.tmTheme │ ├── control_characters.txt │ ├── empty.txt │ ├── empty_lines.txt │ ├── git/ │ │ ├── .config/ │ │ │ └── git/ │ │ │ └── config │ │ └── .gitconfig │ ├── git-commit.man │ ├── long-single-line.txt │ ├── longline.json │ ├── map-syntax_case.Config │ ├── multiline.txt │ ├── nonprintable.txt │ ├── overstrike.txt │ ├── regression_tests/ │ │ ├── first_line_fallback.invalid-syntax │ │ ├── issue_190.md │ │ ├── issue_2541.txt │ │ ├── issue_28.md │ │ ├── issue_314.hs │ │ ├── issue_914.rb │ │ ├── issue_915.vue │ │ └── issue_985.js │ ├── single-line.txt │ ├── sub_directory/ │ │ └── dummy.txt │ ├── system_config/ │ │ └── bat/ │ │ └── config │ ├── tabs.txt │ ├── test.A—B가 │ ├── test.binary │ ├── test.demo.foo.suffix │ ├── test.demo.suffix │ ├── test.json.suffix │ ├── test.json~ │ ├── test.txt │ ├── test_BOM.txt │ ├── test_UTF-16BE-complicated.txt │ ├── test_UTF-16BE.txt │ ├── test_UTF-16LE-complicated.txt │ ├── test_UTF-16LE.txt │ ├── this-file-path-is-really-long-and-would-have-broken-the-layout-of-the-header.txt │ ├── unicode-wrap.txt │ └── word-wrap.txt ├── github-actions.rs ├── integration_tests.rs ├── mocked-pagers/ │ ├── echo.bat │ ├── more │ ├── more.bat │ ├── most │ └── most.bat ├── no_duplicate_extensions.rs ├── scripts/ │ ├── find-slow-to-highlight-files.py │ └── license-checks.sh ├── snapshot_tests.rs ├── snapshots/ │ ├── generate_snapshots.py │ ├── output/ │ │ ├── changes.snapshot.txt │ │ ├── changes_grid.snapshot.txt │ │ ├── changes_grid_header.snapshot.txt │ │ ├── changes_grid_header_numbers.snapshot.txt │ │ ├── changes_grid_header_numbers_rule.snapshot.txt │ │ ├── changes_grid_header_rule.snapshot.txt │ │ ├── changes_grid_numbers.snapshot.txt │ │ ├── changes_grid_numbers_rule.snapshot.txt │ │ ├── changes_grid_rule.snapshot.txt │ │ ├── changes_header.snapshot.txt │ │ ├── changes_header_numbers.snapshot.txt │ │ ├── changes_header_numbers_rule.snapshot.txt │ │ ├── changes_header_rule.snapshot.txt │ │ ├── changes_numbers.snapshot.txt │ │ ├── changes_numbers_rule.snapshot.txt │ │ ├── changes_rule.snapshot.txt │ │ ├── full.snapshot.txt │ │ ├── grid.snapshot.txt │ │ ├── grid_header.snapshot.txt │ │ ├── grid_header_numbers.snapshot.txt │ │ ├── grid_header_numbers_rule.snapshot.txt │ │ ├── grid_header_rule.snapshot.txt │ │ ├── grid_numbers.snapshot.txt │ │ ├── grid_numbers_rule.snapshot.txt │ │ ├── grid_rule.snapshot.txt │ │ ├── header.snapshot.txt │ │ ├── header_numbers.snapshot.txt │ │ ├── header_numbers_rule.snapshot.txt │ │ ├── header_rule.snapshot.txt │ │ ├── numbers.snapshot.txt │ │ ├── numbers_rule.snapshot.txt │ │ ├── plain.snapshot.txt │ │ └── rule.snapshot.txt │ ├── sample.modified.rs │ └── sample.rs ├── syntax-tests/ │ ├── BatTestCustomAssets.sublime-syntax │ ├── compare_highlighted_versions.py │ ├── create_highlighted_versions.py │ ├── highlighted/ │ │ ├── ARM Assembly/ │ │ │ └── test.S │ │ ├── ASP/ │ │ │ └── test.asp │ │ ├── AWK/ │ │ │ └── quicksort.awk │ │ ├── ActionScript/ │ │ │ └── test.as │ │ ├── Ada/ │ │ │ ├── click.adb │ │ │ ├── click.ads │ │ │ └── click.gpr │ │ ├── Apache/ │ │ │ └── httpd.conf │ │ ├── AppleScript/ │ │ │ └── test.applescript │ │ ├── AsciiDoc/ │ │ │ └── test.adoc │ │ ├── Assembly (x86_64)/ │ │ │ └── test.nasm │ │ ├── Bash/ │ │ │ ├── batgrep.sh │ │ │ ├── korn_shell.wrong_ext │ │ │ └── simple.sh │ │ ├── BatTestCustomAssets/ │ │ │ └── NoColorsUnlessCustomAssetsAreUsed.battestcustomassets │ │ ├── Batch/ │ │ │ └── build.bat │ │ ├── BibTeX/ │ │ │ └── test.bib │ │ ├── C/ │ │ │ └── test.c │ │ ├── C-Sharp/ │ │ │ └── Stack.cs │ │ ├── CFML/ │ │ │ └── test.cfml │ │ ├── CMake/ │ │ │ └── CMakeLists.txt │ │ ├── COBOL/ │ │ │ ├── payroll.cbl │ │ │ └── test.cbl │ │ ├── CSS/ │ │ │ └── style.css │ │ ├── CSV/ │ │ │ ├── comma-delimited.csv │ │ │ ├── comma_in_quotes.csv │ │ │ ├── decimals_comma_decimal_point_pipe_delimited.csv │ │ │ ├── decimals_comma_decimal_point_semicolon_delimited.csv │ │ │ └── simple.tsv │ │ ├── Cabal/ │ │ │ └── semantic.cabal │ │ ├── Clojure/ │ │ │ └── test.clj │ │ ├── CoffeeScript/ │ │ │ └── coffeescript.coffee │ │ ├── Cpp/ │ │ │ └── test.cpp │ │ ├── CpuInfo/ │ │ │ └── test.cpuinfo │ │ ├── Crontab/ │ │ │ └── crontab.tab │ │ ├── Crystal/ │ │ │ └── test.cr │ │ ├── D/ │ │ │ └── test.d │ │ ├── Dart/ │ │ │ ├── inner_comment.dart │ │ │ └── test.dart │ │ ├── Diff/ │ │ │ └── 82e7786e747b1fcfac1f963ae6415a22ec9caae1.diff │ │ ├── Dockerfile/ │ │ │ └── Dockerfile │ │ ├── Elixir/ │ │ │ └── command.ex │ │ ├── Elm/ │ │ │ └── test.elm │ │ ├── Email/ │ │ │ └── test.eml │ │ ├── Erlang/ │ │ │ └── bat_erlang.erl │ │ ├── EtcGroup/ │ │ │ └── test.group │ │ ├── F#/ │ │ │ └── string.fs │ │ ├── Fish/ │ │ │ └── test.fish │ │ ├── Fortran (Fixed Form)/ │ │ │ └── quicksort_real_F77.F │ │ ├── Fortran (Modern)/ │ │ │ └── test_savetxt.f90 │ │ ├── Fortran Namelist/ │ │ │ └── test.namelist │ │ ├── Fstab/ │ │ │ └── fstab │ │ ├── GDScript/ │ │ │ └── test.gd │ │ ├── GLSL/ │ │ │ └── test.glsl │ │ ├── Git Attributes/ │ │ │ └── example.gitattributes │ │ ├── Git Config/ │ │ │ └── text.gitconfig │ │ ├── Git Ignore/ │ │ │ └── test.gitignore │ │ ├── Go/ │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ ├── GraphQL/ │ │ │ └── test.graphql │ │ ├── Graphviz DOT/ │ │ │ ├── test_digraph.dot │ │ │ └── test_graph.dot │ │ ├── Groff/ │ │ │ └── rustdoc.1 │ │ ├── Groovy/ │ │ │ └── test.groovy │ │ ├── HTML/ │ │ │ └── test.html │ │ ├── Haskell/ │ │ │ └── test.hs │ │ ├── Hosts/ │ │ │ └── hosts │ │ ├── INI/ │ │ │ ├── test.inf │ │ │ └── test.ini │ │ ├── Idris2/ │ │ │ └── test.idr │ │ ├── Ignored suffixes/ │ │ │ ├── test.rs.bak │ │ │ ├── test.rs.dpkg-dist │ │ │ ├── test.rs.dpkg-old │ │ │ ├── test.rs.in │ │ │ ├── test.rs.in.in │ │ │ ├── test.rs.old │ │ │ ├── test.rs.orig │ │ │ ├── test.rs.orig~ │ │ │ ├── test.rs.rpmnew │ │ │ ├── test.rs.rpmorig │ │ │ ├── test.rs.rpmsave │ │ │ ├── test.rs.ucf-dist │ │ │ ├── test.rs.ucf-new │ │ │ ├── test.rs.ucf-old │ │ │ ├── test.rs~ │ │ │ └── test.unknown~ │ │ ├── JQ/ │ │ │ └── sample.jq │ │ ├── JSON/ │ │ │ ├── example.ndjson │ │ │ └── test.json │ │ ├── Java/ │ │ │ └── test.java │ │ ├── Java Server Page (JSP)/ │ │ │ └── sessionDetail.jsp │ │ ├── JavaScript/ │ │ │ └── test.js │ │ ├── Jinja2/ │ │ │ └── template.jinja2 │ │ ├── Julia/ │ │ │ └── test.jl │ │ ├── Kotlin/ │ │ │ └── test.kt │ │ ├── LLVM/ │ │ │ └── test.ll │ │ ├── Lean/ │ │ │ └── test.lean │ │ ├── Less/ │ │ │ └── example.less │ │ ├── Lisp/ │ │ │ └── utils.lisp │ │ ├── Literate Haskell/ │ │ │ └── Main.lhs │ │ ├── LiveScript/ │ │ │ └── livescript-demo.ls │ │ ├── Log/ │ │ │ └── example.log │ │ ├── Lua/ │ │ │ └── test.lua │ │ ├── MATLAB/ │ │ │ └── test.matlab │ │ ├── Makefile/ │ │ │ └── Makefile │ │ ├── Manpage/ │ │ │ ├── bat-0.16.man │ │ │ ├── fzf-0.33.0.man │ │ │ ├── select-2.man │ │ │ ├── sway.5.man │ │ │ └── uwsm-0.26.3.man │ │ ├── Markdown/ │ │ │ ├── example.md │ │ │ └── typescript.md │ │ ├── MediaWiki/ │ │ │ └── test.mediawiki │ │ ├── MemInfo/ │ │ │ └── test.meminfo │ │ ├── NAnt Build File/ │ │ │ └── Default.build │ │ ├── NSE/ │ │ │ └── test.nse │ │ ├── NSIS/ │ │ │ └── test.nsi │ │ ├── Ninja/ │ │ │ └── test.ninja │ │ ├── OCaml/ │ │ │ └── syntax-test.ml │ │ ├── Objective-C/ │ │ │ └── test.m │ │ ├── Objective-C++/ │ │ │ └── test.mm │ │ ├── Odin/ │ │ │ └── test.odin │ │ ├── PHP/ │ │ │ └── test.php │ │ ├── Pascal/ │ │ │ └── test.pas │ │ ├── Passwd/ │ │ │ └── passwd │ │ ├── Perl/ │ │ │ └── test.pl │ │ ├── Plaintext/ │ │ │ └── plaintext.txt │ │ ├── PowerShell/ │ │ │ └── test.ps1 │ │ ├── Protocol Buffer/ │ │ │ └── vyconf.proto │ │ ├── Puppet/ │ │ │ └── manifest_large_exported_classes_node.pp │ │ ├── PureScript/ │ │ │ └── test.purs │ │ ├── Python/ │ │ │ └── battest.py │ │ ├── QML/ │ │ │ └── BatSyntaxTest.qml │ │ ├── R/ │ │ │ └── test.r │ │ ├── Racket/ │ │ │ └── test.rkt │ │ ├── Rego/ │ │ │ └── src_test.rego │ │ ├── Regular Expression/ │ │ │ └── test.re │ │ ├── Requirements.txt/ │ │ │ └── requirements.txt │ │ ├── Robot Framework/ │ │ │ └── recipe141_aws_simple_storage_service.robot │ │ ├── Ruby/ │ │ │ └── output.rb │ │ ├── Ruby Haml/ │ │ │ └── test.html.haml │ │ ├── Ruby On Rails/ │ │ │ └── test.rb │ │ ├── Rust/ │ │ │ └── output.rs │ │ ├── SCSS/ │ │ │ └── example.scss │ │ ├── SLS/ │ │ │ └── test.sls │ │ ├── SML/ │ │ │ └── sample.sml │ │ ├── SQL/ │ │ │ └── ims.sql │ │ ├── SSH Config/ │ │ │ └── ssh_config │ │ ├── SSHD Config/ │ │ │ └── sshd_config │ │ ├── Sass/ │ │ │ └── example.sass │ │ ├── Scala/ │ │ │ └── ConcurrentEffectLaws.scala │ │ ├── Slim/ │ │ │ └── test.slim │ │ ├── Solidity/ │ │ │ └── ERC721.sol │ │ ├── Strace/ │ │ │ └── ls.strace │ │ ├── Stylus/ │ │ │ └── gradients.styl │ │ ├── Svelte/ │ │ │ └── App.svelte │ │ ├── Swift/ │ │ │ └── test.swift │ │ ├── Syslog/ │ │ │ └── example.syslog │ │ ├── SystemVerilog/ │ │ │ └── output.sv │ │ ├── TOML/ │ │ │ └── Cargo.toml │ │ ├── Tcl/ │ │ │ └── test.tcl │ │ ├── TeX/ │ │ │ └── main.tex │ │ ├── Terraform/ │ │ │ └── main.tf │ │ ├── Textile/ │ │ │ └── test.textile │ │ ├── Todo.txt/ │ │ │ └── todo.txt │ │ ├── TypeScript/ │ │ │ ├── example.cts │ │ │ └── example.ts │ │ ├── TypeScriptReact/ │ │ │ └── app.tsx │ │ ├── Typst/ │ │ │ └── test.typ │ │ ├── VHDL/ │ │ │ └── test.vhdl │ │ ├── Verilog/ │ │ │ └── div_pipelined.v │ │ ├── VimHelp/ │ │ │ └── helphelp.txt │ │ ├── VimL/ │ │ │ └── source.vim │ │ ├── Vue/ │ │ │ └── example.vue │ │ ├── Vyper/ │ │ │ └── crowdsale.vy │ │ ├── WGSL/ │ │ │ └── test.wgsl │ │ ├── XAML/ │ │ │ └── ItemPage.xaml │ │ ├── XML/ │ │ │ ├── Directory.Build.props │ │ │ ├── console.csproj │ │ │ ├── example.xml │ │ │ └── projectname.targets │ │ ├── YAML/ │ │ │ └── example.yaml │ │ ├── Zig/ │ │ │ └── example.zig │ │ ├── cmd-help/ │ │ │ └── test.cmd-help │ │ ├── dash/ │ │ │ └── shfm │ │ ├── debsources/ │ │ │ └── sources.list │ │ ├── fish_history/ │ │ │ └── fish_history │ │ ├── gnuplot/ │ │ │ └── test.gp │ │ ├── http-request-response/ │ │ │ └── example.http │ │ ├── jsonnet/ │ │ │ └── stdlib.jsonnet │ │ ├── nginx/ │ │ │ └── nginx.conf │ │ ├── nim/ │ │ │ ├── main.nim │ │ │ └── test.nimble │ │ ├── nix/ │ │ │ └── test.nix │ │ ├── orgmode/ │ │ │ └── test.org │ │ ├── reStructuredText/ │ │ │ └── reference.rst │ │ ├── resolv.conf/ │ │ │ └── resolv.conf │ │ └── varlink/ │ │ └── org.varlink.certification.varlink │ ├── regression_test.sh │ ├── source/ │ │ ├── ARM Assembly/ │ │ │ └── test.S │ │ ├── ASP/ │ │ │ └── test.asp │ │ ├── AWK/ │ │ │ └── quicksort.awk │ │ ├── ActionScript/ │ │ │ └── test.as │ │ ├── Ada/ │ │ │ ├── LICENSE.md │ │ │ ├── click.adb │ │ │ ├── click.ads │ │ │ └── click.gpr │ │ ├── Apache/ │ │ │ └── httpd.conf │ │ ├── AppleScript/ │ │ │ └── test.applescript │ │ ├── AsciiDoc/ │ │ │ └── test.adoc │ │ ├── Assembly (x86_64)/ │ │ │ └── test.nasm │ │ ├── Bash/ │ │ │ ├── batgrep.sh │ │ │ ├── korn_shell.wrong_ext │ │ │ └── simple.sh │ │ ├── BatTestCustomAssets/ │ │ │ └── NoColorsUnlessCustomAssetsAreUsed.battestcustomassets │ │ ├── Batch/ │ │ │ ├── LICENSE.md │ │ │ └── build.bat │ │ ├── BibTeX/ │ │ │ └── test.bib │ │ ├── C/ │ │ │ └── test.c │ │ ├── C-Sharp/ │ │ │ └── Stack.cs │ │ ├── CFML/ │ │ │ └── test.cfml │ │ ├── CMake/ │ │ │ └── CMakeLists.txt │ │ ├── COBOL/ │ │ │ ├── payroll.cbl │ │ │ └── test.cbl │ │ ├── CSS/ │ │ │ └── style.css │ │ ├── CSV/ │ │ │ ├── LICENSE.md │ │ │ ├── comma-delimited.csv │ │ │ ├── comma_in_quotes.csv │ │ │ ├── decimals_comma_decimal_point_pipe_delimited.csv │ │ │ ├── decimals_comma_decimal_point_semicolon_delimited.csv │ │ │ └── simple.tsv │ │ ├── Cabal/ │ │ │ ├── LICENSE.md │ │ │ └── semantic.cabal │ │ ├── Clojure/ │ │ │ └── test.clj │ │ ├── CoffeeScript/ │ │ │ ├── LICENSE.md │ │ │ └── coffeescript.coffee │ │ ├── Cpp/ │ │ │ └── test.cpp │ │ ├── CpuInfo/ │ │ │ └── test.cpuinfo │ │ ├── Crontab/ │ │ │ └── crontab.tab │ │ ├── Crystal/ │ │ │ └── test.cr │ │ ├── D/ │ │ │ └── test.d │ │ ├── Dart/ │ │ │ ├── inner_comment.dart │ │ │ └── test.dart │ │ ├── Diff/ │ │ │ └── 82e7786e747b1fcfac1f963ae6415a22ec9caae1.diff │ │ ├── Dockerfile/ │ │ │ └── Dockerfile │ │ ├── DotENV/ │ │ │ └── LICENSE.md │ │ ├── Elixir/ │ │ │ ├── LICENSE.md │ │ │ └── command.ex │ │ ├── Elm/ │ │ │ ├── LICENSE.md │ │ │ └── test.elm │ │ ├── Email/ │ │ │ └── test.eml │ │ ├── Erlang/ │ │ │ └── bat_erlang.erl │ │ ├── EtcGroup/ │ │ │ └── test.group │ │ ├── F#/ │ │ │ ├── LICENSE.md │ │ │ └── string.fs │ │ ├── Fish/ │ │ │ └── test.fish │ │ ├── Fortran (Fixed Form)/ │ │ │ ├── LICENSE.md │ │ │ └── quicksort_real_F77.F │ │ ├── Fortran (Modern)/ │ │ │ ├── LICENSE.md │ │ │ └── test_savetxt.f90 │ │ ├── Fortran Namelist/ │ │ │ └── test.namelist │ │ ├── Fstab/ │ │ │ └── fstab │ │ ├── GDScript/ │ │ │ └── test.gd │ │ ├── GLSL/ │ │ │ └── test.glsl │ │ ├── Git Attributes/ │ │ │ └── example.gitattributes │ │ ├── Git Config/ │ │ │ ├── LICENSE.md │ │ │ └── text.gitconfig │ │ ├── Git Ignore/ │ │ │ ├── LICENSE.md │ │ │ └── test.gitignore │ │ ├── Go/ │ │ │ ├── LICENSE.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ ├── GraphQL/ │ │ │ └── test.graphql │ │ ├── Graphviz DOT/ │ │ │ ├── LICENSE.md │ │ │ ├── test_digraph.dot │ │ │ └── test_graph.dot │ │ ├── Groff/ │ │ │ ├── LICENSE.md │ │ │ └── rustdoc.1 │ │ ├── Groovy/ │ │ │ └── test.groovy │ │ ├── HTML/ │ │ │ └── test.html │ │ ├── Haskell/ │ │ │ └── test.hs │ │ ├── Hosts/ │ │ │ └── hosts │ │ ├── INI/ │ │ │ ├── test.inf │ │ │ └── test.ini │ │ ├── Idris2/ │ │ │ ├── LICENSE.md │ │ │ └── test.idr │ │ ├── Ignored suffixes/ │ │ │ ├── test.rs.bak │ │ │ ├── test.rs.dpkg-dist │ │ │ ├── test.rs.dpkg-old │ │ │ ├── test.rs.in │ │ │ ├── test.rs.in.in │ │ │ ├── test.rs.old │ │ │ ├── test.rs.orig │ │ │ ├── test.rs.orig~ │ │ │ ├── test.rs.rpmnew │ │ │ ├── test.rs.rpmorig │ │ │ ├── test.rs.rpmsave │ │ │ ├── test.rs.ucf-dist │ │ │ ├── test.rs.ucf-new │ │ │ ├── test.rs.ucf-old │ │ │ ├── test.rs~ │ │ │ └── test.unknown~ │ │ ├── JQ/ │ │ │ ├── LICENSE.md │ │ │ └── sample.jq │ │ ├── JSON/ │ │ │ ├── example.ndjson │ │ │ └── test.json │ │ ├── Java/ │ │ │ └── test.java │ │ ├── Java Server Page (JSP)/ │ │ │ ├── LICENSE.md │ │ │ ├── NOTICE │ │ │ └── sessionDetail.jsp │ │ ├── JavaScript/ │ │ │ └── test.js │ │ ├── Jinja2/ │ │ │ └── template.jinja2 │ │ ├── Julia/ │ │ │ └── test.jl │ │ ├── Kotlin/ │ │ │ └── test.kt │ │ ├── LLVM/ │ │ │ └── test.ll │ │ ├── Lean/ │ │ │ ├── LICENSE.md │ │ │ └── test.lean │ │ ├── Less/ │ │ │ └── example.less │ │ ├── Lisp/ │ │ │ ├── LICENSE.md │ │ │ └── utils.lisp │ │ ├── Literate Haskell/ │ │ │ └── Main.lhs │ │ ├── LiveScript/ │ │ │ ├── LICENSE.md │ │ │ └── livescript-demo.ls │ │ ├── Log/ │ │ │ └── example.log │ │ ├── Lua/ │ │ │ └── test.lua │ │ ├── MATLAB/ │ │ │ ├── LICENSE.md │ │ │ └── test.matlab │ │ ├── Makefile/ │ │ │ ├── LICENSE.md │ │ │ └── Makefile │ │ ├── Manpage/ │ │ │ ├── bat-0.16.man │ │ │ ├── fzf-0.33.0.man │ │ │ ├── select-2.man │ │ │ ├── sway.5.man │ │ │ └── uwsm-0.26.3.man │ │ ├── Markdown/ │ │ │ ├── example.md │ │ │ └── typescript.md │ │ ├── MediaWiki/ │ │ │ └── test.mediawiki │ │ ├── MemInfo/ │ │ │ └── test.meminfo │ │ ├── NAnt Build File/ │ │ │ ├── Default.build │ │ │ └── LICENSE.md │ │ ├── NSE/ │ │ │ └── test.nse │ │ ├── NSIS/ │ │ │ └── test.nsi │ │ ├── Ninja/ │ │ │ ├── LICENSE.md │ │ │ └── test.ninja │ │ ├── OCaml/ │ │ │ └── syntax-test.ml │ │ ├── Objective-C/ │ │ │ └── test.m │ │ ├── Objective-C++/ │ │ │ └── test.mm │ │ ├── Odin/ │ │ │ └── test.odin │ │ ├── PHP/ │ │ │ └── test.php │ │ ├── Pascal/ │ │ │ └── test.pas │ │ ├── Passwd/ │ │ │ └── passwd │ │ ├── Perl/ │ │ │ └── test.pl │ │ ├── Plaintext/ │ │ │ ├── README.md │ │ │ ├── bat_options │ │ │ └── plaintext.txt │ │ ├── PowerShell/ │ │ │ └── test.ps1 │ │ ├── Protocol Buffer/ │ │ │ └── vyconf.proto │ │ ├── Puppet/ │ │ │ ├── LICENSE.md │ │ │ └── manifest_large_exported_classes_node.pp │ │ ├── PureScript/ │ │ │ └── test.purs │ │ ├── Python/ │ │ │ └── battest.py │ │ ├── QML/ │ │ │ └── BatSyntaxTest.qml │ │ ├── R/ │ │ │ └── test.r │ │ ├── Racket/ │ │ │ └── test.rkt │ │ ├── Rego/ │ │ │ ├── LICENSE.md │ │ │ └── src_test.rego │ │ ├── Regular Expression/ │ │ │ └── test.re │ │ ├── Requirements.txt/ │ │ │ └── requirements.txt │ │ ├── Robot Framework/ │ │ │ ├── LICENSE.md │ │ │ └── recipe141_aws_simple_storage_service.robot │ │ ├── Ruby/ │ │ │ └── output.rb │ │ ├── Ruby Haml/ │ │ │ └── test.html.haml │ │ ├── Ruby On Rails/ │ │ │ └── test.rb │ │ ├── Rust/ │ │ │ └── output.rs │ │ ├── SCSS/ │ │ │ └── example.scss │ │ ├── SLS/ │ │ │ └── test.sls │ │ ├── SML/ │ │ │ └── sample.sml │ │ ├── SQL/ │ │ │ └── ims.sql │ │ ├── SSH Config/ │ │ │ └── ssh_config │ │ ├── SSHD Config/ │ │ │ └── sshd_config │ │ ├── Sass/ │ │ │ └── example.sass │ │ ├── Scala/ │ │ │ ├── ConcurrentEffectLaws.scala │ │ │ └── LICENSE.md │ │ ├── Slim/ │ │ │ └── test.slim │ │ ├── Solidity/ │ │ │ ├── ERC721.sol │ │ │ └── LICENSE.md │ │ ├── Strace/ │ │ │ └── ls.strace │ │ ├── Stylus/ │ │ │ ├── LICENSE.md │ │ │ └── gradients.styl │ │ ├── Svelte/ │ │ │ ├── App.svelte │ │ │ └── LICENSE.md │ │ ├── Swift/ │ │ │ └── test.swift │ │ ├── Syslog/ │ │ │ └── example.syslog │ │ ├── SystemVerilog/ │ │ │ └── output.sv │ │ ├── TOML/ │ │ │ └── Cargo.toml │ │ ├── Tcl/ │ │ │ └── test.tcl │ │ ├── TeX/ │ │ │ └── main.tex │ │ ├── Terraform/ │ │ │ └── main.tf │ │ ├── Textile/ │ │ │ └── test.textile │ │ ├── Todo.txt/ │ │ │ └── todo.txt │ │ ├── TypeScript/ │ │ │ ├── LICENSE.md │ │ │ ├── example.cts │ │ │ └── example.ts │ │ ├── TypeScriptReact/ │ │ │ ├── LICENSE.md │ │ │ └── app.tsx │ │ ├── Typst/ │ │ │ └── test.typ │ │ ├── VHDL/ │ │ │ └── test.vhdl │ │ ├── Verilog/ │ │ │ ├── LICENSE.md │ │ │ └── div_pipelined.v │ │ ├── VimHelp/ │ │ │ └── helphelp.txt │ │ ├── VimL/ │ │ │ └── source.vim │ │ ├── Vue/ │ │ │ └── example.vue │ │ ├── Vyper/ │ │ │ ├── LICENSE.md │ │ │ └── crowdsale.vy │ │ ├── WGSL/ │ │ │ ├── LICENSE.md │ │ │ └── test.wgsl │ │ ├── XAML/ │ │ │ ├── ItemPage.xaml │ │ │ └── LICENSE.md │ │ ├── XML/ │ │ │ ├── Directory.Build.props │ │ │ ├── console.csproj │ │ │ ├── example.xml │ │ │ └── projectname.targets │ │ ├── YAML/ │ │ │ └── example.yaml │ │ ├── Zig/ │ │ │ └── example.zig │ │ ├── cmd-help/ │ │ │ └── test.cmd-help │ │ ├── dash/ │ │ │ ├── LICENSE.md │ │ │ └── shfm │ │ ├── debsources/ │ │ │ └── sources.list │ │ ├── fish_history/ │ │ │ └── fish_history │ │ ├── gnuplot/ │ │ │ └── test.gp │ │ ├── http-request-response/ │ │ │ └── example.http │ │ ├── jsonnet/ │ │ │ ├── LICENSE.md │ │ │ └── stdlib.jsonnet │ │ ├── nginx/ │ │ │ └── nginx.conf │ │ ├── nim/ │ │ │ ├── main.nim │ │ │ └── test.nimble │ │ ├── nix/ │ │ │ └── test.nix │ │ ├── orgmode/ │ │ │ └── test.org │ │ ├── reStructuredText/ │ │ │ └── reference.rst │ │ ├── resolv.conf/ │ │ │ └── resolv.conf │ │ └── varlink/ │ │ ├── LICENSE.md │ │ └── org.varlink.certification.varlink │ ├── test_custom_assets.sh │ └── update.sh ├── system_wide_config.rs ├── test_pretty_printer.rs ├── tester/ │ └── mod.rs └── utils/ ├── command.rs ├── mocked_pagers.rs └── mod.rs