summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-12-12 07:03:37 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-12-12 07:03:37 -0500
commit8396d3ffaae3784880a6cef25775ba2abd9f4fcf (patch)
tree89773e783cd53e894ed0bb4fd88ac7b2193cd8ac /src
parent652c70f207ccfd859055c0bde09cbd6cc4a3d263 (diff)
Make backreference support clear.
Fixes #268.
Diffstat (limited to 'src')
-rw-r--r--src/app.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app.rs b/src/app.rs
index fe80a069..13b1ac60 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -5,6 +5,10 @@ use clap::{App, AppSettings, Arg, ArgSettings};
const ABOUT: &'static str = "
ripgrep (rg) recursively searches your current directory for a regex pattern.
+ripgrep's regex engine uses finite automata and guarantees linear time
+searching. Because of this, features like backreferences and arbitrary
+lookaround are not supported.
+
Project home page: https://github.com/BurntSushi/ripgrep
Use -h for short descriptions and --help for more details.";