view runtime/tools/blink.c @ 15498:e1de20a47fa9 v8.1.0757

patch 8.1.0757: not enough documentation for Blobs commit https://github.com/vim/vim/commit/d89682477cd01ec60edd6d88093b95b12e180127 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 15 22:51:57 2019 +0100 patch 8.1.0757: not enough documentation for Blobs Problem: Not enough documentation for Blobs. Solution: Add a section about Blobs.
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Jan 2019 23:00:07 +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;
}