gitextract_qvo96f4r/ ├── .clang-format ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile.am ├── Makefile.w32 ├── NOTICE ├── README.md ├── _the_silver_searcher ├── ag.bashcomp.sh ├── autogen.sh ├── build.sh ├── configure.ac ├── doc/ │ ├── ag.1 │ ├── ag.1.md │ └── generate_man.sh ├── format.sh ├── m4/ │ └── ax_pthread.m4 ├── pgo.sh ├── sanitize.sh ├── src/ │ ├── decompress.c │ ├── decompress.h │ ├── ignore.c │ ├── ignore.h │ ├── lang.c │ ├── lang.h │ ├── log.c │ ├── log.h │ ├── main.c │ ├── options.c │ ├── options.h │ ├── print.c │ ├── print.h │ ├── print_w32.c │ ├── scandir.c │ ├── scandir.h │ ├── search.c │ ├── search.h │ ├── uthash.h │ ├── util.c │ ├── util.h │ ├── win32/ │ │ └── config.h │ └── zfile.c ├── tests/ │ ├── adjacent_matches.t │ ├── bad_path.t │ ├── big/ │ │ ├── big_file.t │ │ └── create_big_file.py │ ├── case_sensitivity.t │ ├── color.t │ ├── column.t │ ├── count.t │ ├── ds_store_ignore.t │ ├── empty_environment.t │ ├── empty_match.t │ ├── exitcodes.t │ ├── fail/ │ │ ├── unicode_case_insensitive.t │ │ └── unicode_case_insensitive.t.err │ ├── files_with_matches.t │ ├── filetype.t │ ├── hidden_option.t │ ├── ignore_abs_path.t │ ├── ignore_absolute_search_path_with_glob.t │ ├── ignore_backups.t │ ├── ignore_examine_parent_ignorefiles.t │ ├── ignore_extensions.t │ ├── ignore_gitignore.t │ ├── ignore_invert.t │ ├── ignore_pattern_in_subdirectory.t │ ├── ignore_slash_in_subdir.t │ ├── ignore_subdir.t │ ├── ignore_vcs.t │ ├── invert_match.t │ ├── is_binary_pdf.t │ ├── line_width.t │ ├── list_file_types.t │ ├── literal_word_regexp.t │ ├── max_count.t │ ├── multiline.t │ ├── negated_options.t │ ├── one_device.t │ ├── only_matching.t │ ├── option_g.t │ ├── option_smartcase.t │ ├── passthrough.t │ ├── pipecontext.t │ ├── print_all_files.t │ ├── print_end.t │ ├── print_end.txt │ ├── search_stdin.t │ ├── setup.sh │ ├── stupid_fnmatch.t.disabled │ ├── vimgrep.t │ └── word_regexp.t └── the_silver_searcher.spec.in