summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Strack <robert.strack@gmail.com>2015-11-18 21:09:18 -0500
committerRobert Strack <robert.strack@gmail.com>2015-11-18 21:09:18 -0500
commitd615961430aca9668cfb056aef6024c4ed41eff8 (patch)
treee75c77e0bea9789b9956b754887d23267afe5b61
parentde8d6841b00903f2873a8b009faf7002bfbc1273 (diff)
downloadzsh-d615961430aca9668cfb056aef6024c4ed41eff8.tar.gz
zsh-d615961430aca9668cfb056aef6024c4ed41eff8.tar.bz2
zsh-d615961430aca9668cfb056aef6024c4ed41eff8.zip
readme file
-rw-r--r--plugins/timer/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/timer/README.md b/plugins/timer/README.md
new file mode 100644
index 000000000..19072cb24
--- /dev/null
+++ b/plugins/timer/README.md
@@ -0,0 +1,18 @@
+This plugin allows to display command's execution time in a very nonintrusive way.
+
+Timer can be tuned by these two variables:
+* `TIMER_PRECISION` allows to control number of decimal places (default `1`)
+* `TIMER_FORMAT` allows to adjust display format (default `'/%d'`)
+
+Sample session:
+
+ me@here:~$ sleep 1 /1.0s
+ me@here:~$ sleep 73 /1m13.0s
+ me@here:~$ TIMER_FORMAT='[%d]'; TIMER_PRECISION=2 [0.00s]
+ me@here:~$ head -c50 < /dev/urandom | hexdump
+ 0000000 b2 16 20 f0 29 1f 61 2d 8a 29 20 8c 8c 39 5a ab
+ 0000010 21 47 0e f9 ee a4 76 46 71 9e 4f 6b a4 c4 51 cb
+ 0000020 f9 1f 7e b9 6f 2c ae dd cf 40 6d 64 a8 fb d3 db
+ 0000030 09 37
+ 0000032 [0.02s]
+