get things from one computer to another, safely
Go to file
Brian Warner 12414fd8be code-completer: re-fetch channelids upon TAB, if necessary
This fixes the situation where you start the receiver first, then start
the sender, then you hit TAB on the receiver.

This somewhat improves the situation where you start the receiver first,
hit TAB (getting nothing), then start the sender, then hit TAB on the
receiver again. The second TAB will list the channel-ids, but won't
insert the only one as it's supposed to. You must type something (which
you can erase) and then hit TAB again to get a unique channel-id
inserted. But at least you can tell which one to type.

The first TAB runs the completer with readline.get_completion_type()
equal to 9=TAB=try-to-insert. The second (and subsequent) TABs use
63=?=list-matches, and it won't go back to 9 until you type something.
2015-03-13 01:50:21 -07:00
docs fill in initiator flow, define relay API 2015-02-10 18:34:13 -08:00
src/wormhole code-completer: re-fetch channelids upon TAB, if necessary 2015-03-13 01:50:21 -07:00
.gitattributes initial setup.py, versioneer-ification 2015-02-10 00:48:19 -08:00
.gitignore add first unit test, 'setup.py test' support 2015-02-10 01:05:15 -08:00
LICENSE Initial commit 2015-02-10 00:38:44 -08:00
MANIFEST.in initial setup.py, versioneer-ification 2015-02-10 00:48:19 -08:00
README.md Initial commit 2015-02-10 00:38:44 -08:00
setup.py setup.py: include all packages= , I always forget that 2015-03-04 00:42:24 -08:00
versioneer.py initial setup.py, versioneer-ification 2015-02-10 00:48:19 -08:00

wormhole-sync

get things from one computer to another, safely