X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;ds=sidebyside;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Ftimer%2FREADME.md;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Ftimer%2FREADME.md;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=30b0bd00e355d6c58b7e87d0ec0f1fcf7c8b5479;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/timer/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/timer/README.md deleted file mode 100644 index 30b0bd0..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/timer/README.md +++ /dev/null @@ -1,18 +0,0 @@ -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'`) -* `TIMER_THRESHOLD` allows to set the minimum execution time that causes the timer to be shown (default `0`) - -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]