summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-10-100.2.20.2.2Andrew Gallant
2016-10-10Don't include HomebrewFormula in crate.Andrew Gallant
2016-10-10changelog 0.2.2Andrew Gallant
2016-10-10Update regex-syntax for bug fix.Andrew Gallant
The bug fix was in expression pretty printing. ripgrep parses the regex into an AST and may do some modifications to it, which requires the ability to go from string -> AST -> string' -> AST' where string == string' implies AST == AST'. Also, add a regression test for the specific regex that tripped the bug. Fixes #156.
2016-10-10Update darwin cfg attributes.Andrew Gallant
2016-10-10Fix debug expression statement.Andrew Gallant
2016-10-10Disable regression_131 test on darwin.Andrew Gallant
It's not clear why it's failing. Maybe it doesn't permit certain characters in file paths?
2016-10-10Fix docopt usage string. Gah.Andrew Gallant
2016-10-10Clarify documentation for --replace.Andrew Gallant
Also add a minor clarification for --type-add. Fixes #147
2016-10-10globset-0.1.0globset-0.1.0Andrew Gallant
2016-10-10add version markerAndrew Gallant
2016-10-10Fill in globset/Cargo.toml with more details.Andrew Gallant
2016-10-10Update appveyor to test subcrates.Andrew Gallant
2016-10-10Fix symlink test.Andrew Gallant
We attempt to run it on Windows, but I'm getting "access denied" errors when trying to create a file symlink. So we disable the test on Windows.
2016-10-10style nitsAndrew Gallant
2016-10-10Finish overhaul of glob matching.Andrew Gallant
This commit completes the initial move of glob matching to an external crate, including fixing up cross platform support, polishing the external crate for others to use and fixing a number of bugs in the process. Fixes #87, #127, #131
2016-10-10Merge pull request #161 from moshen/update-homebrew-readmeAndrew Gallant
Update Homebrew instructions in the README
2016-10-10Merge pull request #157 from CannedYerins/follow-explicit-argsAndrew Gallant
Always follow symlinks on explicit file arguments
2016-10-10Merge pull request #155 from theamazingfedex/adding-extra-md-filetypeAndrew Gallant
Adding extra .md filetype for ease of access to Markdown filetypes
2016-10-10Merge pull request #154 from theamazingfedex/adding-spark-filetypeAndrew Gallant
Adding .spark filetype
2016-10-10Merge pull request #153 from theamazingfedex/masterAndrew Gallant
Adding .config filetype
2016-10-09Update Homebrew instructions in the READMEColin Kennedy
2016-10-08Always follow symlinks on explicit file arguments.Ian Kerins
2016-10-07added extra .md filetype for ease of accessDaniel Wood
2016-10-07added .spark filetypeDaniel Wood
2016-10-07added .config filetypeDaniel Wood
2016-10-05Merge pull request #148 from munyari/patch-1Andrew Gallant
Change Arch Linux instructions
2016-10-05Change Arch Linux instructionsPanashe Fundira
The `-Syu` flag will do a full system upgrade and then install the package, which is not necessarily the desired behavior. Only the `-S` flag is necessary to install a single package. See https://wiki.archlinux.org/index.php/Pacman#Installing_specific_packages https://wiki.archlinux.org/index.php/Pacman#Upgrading_packages
2016-10-04Refactor and test glob sets.Andrew Gallant
This commit goes a long way toward refactoring glob sets so that the code is easier to maintain going forward. In particular, it makes the literal optimizations that glob sets used a lot more structured and much easier to extend. Tests have also been modified to include glob sets. There's still a bit of polish work left to do before a release. This also fixes the immediate issue where large gitignore files were causing ripgrep to slow way down. While we don't technically fix it for good, we're a lot better about reducing the number of regexes we compile. In particular, if a gitignore file contains thousands of patterns that can't be matched more simply using literals, then ripgrep will slow down again. We could fix this for good by avoiding RegexSet if the number of regexes grows too large. Fixes #134.
2016-10-04Merge pull request #146 from samuelcolvin/add-jinja-typeAndrew Gallant
add jinja type for *.jinja and *.jinja2
2016-10-04add jinja type for *.jinja and *.jinja2Samuel Colvin
2016-10-04Merge pull request #143 from moshen/change-brew-formula-nameAndrew Gallant
Fix brew formula name to not conflict with core
2016-10-03Fix brew formula name to not conflict with coreColin Kennedy
Since the homebrew-core formula was accepted, we should differentiate the prebuilt formula available in this tap
2016-10-03Merge pull request #144 from bitshifter/dotcmakeAndrew Gallant
Added *.cmake extension to cmake file type.
2016-10-04Added *.cmake extension to cmake file type.Cameron Hart
2016-10-03Remove i686-darwin.Andrew Gallant
Apparently 32 bit Mac CPUs are really old at this point. Also, it has been causing CI to fail lately. It's not worth it.
2016-10-03Merge pull request #139 from moshen/make-a-tapAndrew Gallant
Make the repo a Homebrew Tap
2016-09-30Move glob implementation to new crate.Andrew Gallant
It is isolated and complex enough that it deserves attention all on its own. It's also eminently reusable.
2016-09-30Stopgap measure for projects with huge gitignore files.Andrew Gallant
This helps #134 by avoiding a slow regex execution path, but doesn't actually fix the problem. Namely, we've gone from "so slow I'm not going to keep waiting for rg to finish" to "wow that was slow but at least it finished before I lost my patience."
2016-09-30Make the repo a Homebrew TapColin Kennedy
2016-09-29Merge pull request #121 from lilydjwg/masterAndrew Gallant
if --color always, always print with color, even when --vimgrep is given
2016-09-29Merge pull request #133 from akien-mga/pr-appveyorAndrew Gallant
AppVeyor: Change release description to fit Travis binaries
2016-09-29AppVeyor: Change release description to fit Travis binariesRémi Verschelde
2016-09-28Be better with short circuiting with --quiet.Andrew Gallant
It didn't make sense for --quiet to be part of the printer, because --quiet doesn't just mean "don't print," it also means, "stop after the first match is found." This needs to be wired all the way up through directory traversal, and it also needs to cause all of the search workers to quit as well. We do it with an atomic that is only checked with --quiet is given. Fixes #116.
2016-09-28clarifyAndrew Gallant
2016-09-28Add -s/--case-sensitive flag.Andrew Gallant
This flag overrides both --smart-case and --ignore-case. Closes #124.
2016-09-28bump docopt to 0.6.86Andrew Gallant
2016-09-28if --color always, always print with color, even when --vimgrep is given依云
2016-09-28Merge pull request #122 from lilydjwg/color-filenameAndrew Gallant
colorize filepath at the beginning of line too
2016-09-28colorize filepath at the beginning of line too依云