view runtime/tools/blink.c @ 23918:331252d0c5e6

Added tag v8.2.2501 for changeset 4b417b776b95d9af52d0745cd4eda9627f25bd73
author Bram Moolenaar <Bram@vim.org>
date Thu, 11 Feb 2021 21:30:05 +0100
parents 64035abb986b
children
line wrap: on
line source

/*
 * An extremely simple program to make the cursor blink in an xterm.
 * This is useful when the cursor is hard to spot in a highlighted file.
 * Start in the background: "blink&"  Stop by killing it.
 * Bram Moolenaar  980109  (based on an idea from John Lange).
 */

#include <stdio.h>
#include <unistd.h>

	int
main(void)
{
	while (1)
	{
		printf("\e[?25h");
		fflush(stdout);
		usleep(400000);		/* on time */
		printf("\e[?25l");
		fflush(stdout);
		usleep(250000);		/* off time */
	}
	return 0;
}