Mercurial > hg
view tests/test-paths @ 6664:1e3c1f010808
Truncate input to 1K when using pygments guess_lexer.
This function appears to be exponential with input length.
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Thu, 12 Jun 2008 00:11:09 -0700 |
parents | 92eb0a019bf2 |
children |
line wrap: on
line source
#!/bin/sh hg init a hg clone a b cd a echo '[paths]' >> .hg/hgrc echo 'dupe = ../b' >> .hg/hgrc hg in dupe | fgrep '../' cd .. hg -R a in dupe | fgrep '../' true