nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 762fb4bec55fcd728fa58ad1a1498b5937f70436
parent a2b4f00a270e3139acc3e255728940bca1826bd6
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Wed,  4 Oct 2017 21:34:44 +0200

display: switch off the cursor early on during startup

So the cursor won't be visible at the end of the status-bar message
while reading in a large file.

Diffstat:
Msrc/nano.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/nano.c b/src/nano.c @@ -2489,6 +2489,7 @@ int main(int argc, char **argv) /* Create the three subwindows, based on the current screen dimensions. */ window_init(); + curs_set(0); editwincols = COLS;