summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
AgeCommit message (Collapse)Author
2017-03-09Add _rg.ps1 to windows zipDaniel Santa Cruz
Tested with local cargo build paths.
2016-11-20Completely re-work colored output and tty handling.Andrew Gallant
This commit completely guts all of the color handling code and replaces most of it with two new crates: wincolor and termcolor. wincolor provides a simple API to coloring using the Windows console and termcolor provides a platform independent coloring API tuned for multithreaded command line programs. This required a lot more flexibility than what the `term` crate provided, so it was dropped. We instead switch to writing ANSI escape sequences directly and ignore the TERMINFO database. In addition to fixing several bugs, this commit also permits end users to customize colors to a certain extent. For example, this command will set the match color to magenta and the line number background to yellow: rg --colors 'match:fg:magenta' --colors 'line:bg:yellow' foo For tty handling, we've adopted a hack from `git` to do tty detection in MSYS/mintty terminals. As a result, ripgrep should get both color detection and piping correct on Windows regardless of which terminal you use. Finally, switch to line buffering. Performance doesn't seem to be impacted and it's an otherwise more user friendly option. Fixes #37, Fixes #51, Fixes #94, Fixes #117, Fixes #182, Fixes #231
2016-10-29fix appveyor, sighAndrew Gallant
2016-10-29Move all gitignore matching to separate crate.Andrew Gallant
This PR introduces a new sub-crate, `ignore`, which primarily provides a fast recursive directory iterator that respects ignore files like gitignore and other configurable filtering rules based on globs or even file types. This results in a substantial source of complexity moved out of ripgrep's core and into a reusable component that others can now (hopefully) benefit from. While much of the ignore code carried over from ripgrep's core, a substantial portion of it was rewritten with the following goals in mind: 1. Reuse matchers built from gitignore files across directory iteration. 2. Design the matcher data structure to be amenable for parallelizing directory iteration. (Indeed, writing the parallel iterator is the next step.) Fixes #9, #44, #45
2016-10-10Update appveyor to test subcrates.Andrew Gallant
2016-09-29AppVeyor: Change release description to fit Travis binariesRĂ©mi Verschelde
2016-09-21grrr fix appveyor deployment filterAndrew Gallant
2016-09-21attempt to fix Windows buildAndrew Gallant
2016-09-08update project name0.0.15Andrew Gallant
2016-09-08Rename xrep to ripgrep.Andrew Gallant
2016-09-05update appveyor0.0.10Andrew Gallant
2016-09-05windows debug, take 10.0.8Andrew Gallant
2016-09-05windows, take 30.0.5Andrew Gallant
2016-09-05windows, take 20.0.4Andrew Gallant
2016-09-05setting up windows, take 10.0.3Andrew Gallant
2016-02-27initial commitAndrew Gallant