From ed5104cfdb6a050b2d9b948a54ae9619c19b1100 Mon Sep 17 00:00:00 2001 From: Gokcehan Date: Sat, 19 Dec 2020 17:25:44 +0300 Subject: [PATCH] update doc --- doc.go | 2 +- docstring.go | 4 +--- lf.1 | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/doc.go b/doc.go index 5ddd90a..d276efc 100644 --- a/doc.go +++ b/doc.go @@ -912,7 +912,7 @@ For example, an alternative rename command may look like this: cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1 -One thing to be careful is that although input is still line buffered, output and error are byte buffered and verbose commands will be very slow to display. +Note that input is line buffered and output and error are byte buffered. Waiting Shell Commands diff --git a/docstring.go b/docstring.go index f3f3efc..443bdec 100644 --- a/docstring.go +++ b/docstring.go @@ -996,9 +996,7 @@ statline. For example, an alternative rename command may look like this: cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1 -One thing to be careful is that although input is still line buffered, -output and error are byte buffered and verbose commands will be very slow to -display. +Note that input is line buffered and output and error are byte buffered. Waiting Shell Commands diff --git a/lf.1 b/lf.1 index 7bd03cd..1f6a41d 100644 --- a/lf.1 +++ b/lf.1 @@ -1080,7 +1080,7 @@ You can also output error messages in the command and it will show up in the sta cmd rename %[ -e $1 ] && printf "file exists" || mv $f $1 .EE .PP -One thing to be careful is that although input is still line buffered, output and error are byte buffered and verbose commands will be very slow to display. +Note that input is line buffered and output and error are byte buffered. .SH WAITING SHELL COMMANDS Waiting shell commands are similar to regular shell commands except that they wait for a key press when the command is finished. These can be useful to see the output of a program before the ui is resumed. Waiting shell commands are more appropriate than piping shell commands when the command is verbose and the output is best displayed as multiline. .SH ASYNCHRONOUS SHELL COMMANDS