]> git.cworth.org Git - notmuch-wiki/commitdiff
Cleaned up some markdown.
authorJesse Rosenthal <jrosenthal@jhu.edu>
Fri, 28 Jan 2011 15:00:51 +0000 (10:00 -0500)
committerJesse Rosenthal <jrosenthal@jhu.edu>
Fri, 28 Jan 2011 15:00:51 +0000 (10:00 -0500)
Indentations were off.

remoteusage.mdwn

index 7a219920138534f6faeee098e81e79c7b5bf9d01..edc63fb93c17b04881fe25c6af1b792a7d1c728e 100644 (file)
@@ -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
     }