summaryrefslogtreecommitdiff
path: root/remoteusage.mdwn
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2011-01-28 10:00:51 -0500
committerJesse Rosenthal <jrosenthal@jhu.edu>2011-01-28 10:00:51 -0500
commit7e1c518574caddf0ec9ec70eac33a361c75aecbd (patch)
treed919d810746e39779165b79a52b97b07c836d6e7 /remoteusage.mdwn
parentd6b6189145c19e9ed965cc75536ed239120835c2 (diff)
Cleaned up some markdown.
Indentations were off.
Diffstat (limited to 'remoteusage.mdwn')
-rw-r--r--remoteusage.mdwn17
1 files changed, 7 insertions, 10 deletions
diff --git a/remoteusage.mdwn b/remoteusage.mdwn
index 7a21992..edc63fb 100644
--- a/remoteusage.mdwn
+++ b/remoteusage.mdwn
@@ -87,13 +87,10 @@ be necessary in the furture.
notmuch_search ()
{
- #COUNTER=1
notmuch_run search $@ |
while read line; do
- sleep 0.02
- #[ $((COUNTER % 3)) == "0" ] && sleep 0.03
- echo "${line}"
- #COUNTER=$((COUNTER + 1))
+ sleep 0.02
+ echo "${line}"
done
}
@@ -101,12 +98,12 @@ be necessary in the furture.
notmuch_show ()
{
if [ ${1} = "--format=raw" ]; then
- hashed=`hash_name ${2}`
- check_for_file_name ${hashed} ||
- notmuch_run show --format=raw ${2} > "${CACHE}/${hashed}"
- cat "${CACHE}/${hashed}"
+ hashed=`hash_name ${2}`
+ check_for_file_name ${hashed} ||
+ notmuch_run show --format=raw ${2} > "${CACHE}/${hashed}"
+ cat "${CACHE}/${hashed}"
else
- notmuch_run show $@
+ notmuch_run show $@
fi
}