annotate tests/test-remove @ 1587:851bc33ff545

Less annoying directory completion (see http://bugs.debian.org/343458) The current bash completion script is quite painful in conjuntion with deep directory trees because it adds a space after each successful directory completion. Eg. "hg clone /ho<tab>" is completed to "hg clone /home " when what you really want is "hg clone /home/" (assuming the complete path to the repository looks like /home/foo/hg...). That's because the 'complete' command does not know about the type of completion it receives from the _hg shell function. When only a single completion is returned, it assumes completion is complete and tells readline to add a trailing space. This behaviour is usually wanted, but not in the case of directory completion. I've attached a patch that circumvents this problem by only returning successful completions for directories that contain a .hg subdirectory. If no repositories are found, no completions are returned either, and bash falls back to ordinary (filename) completion. I find this behaviour a lot less annoying than the current one. Alternative: Use option nospace for the 'complete' command and let _hg itself take care of adding a trailing space where appropriate. That's a far more intrusive change, though.
author Daniel Kobras <kobras@debian.org>
date Thu, 15 Dec 2005 15:40:14 +0100
parents 6a104941d56a
children 7544700fd931
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
936
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
1 #!/bin/sh
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
2
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
3 hg init a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
4 cd a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
5 echo a > foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
6 hg add foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
7 hg commit -m 1 -d "0 0"
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
8 rm foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
9 hg remove foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
10 hg commit -m 2 -d "0 0"
1570
6a104941d56a hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents: 936
diff changeset
11 hg export 0
6a104941d56a hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents: 936
diff changeset
12 hg export 1
6a104941d56a hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents: 936
diff changeset
13 hg log -p -r 0
6a104941d56a hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents: 936
diff changeset
14 hg log -p -r 1
936
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
15
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
16 cd ..
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
17 hg clone a b