Mercurial > vim
annotate runtime/tools/blink.c @ 8007:ac78cba9e72b v7.4.1298
commit https://github.com/vim/vim/commit/d6a8d48587b2ff43c343fa365898576cc1e235ea
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 10 20:32:20 2016 +0100
patch 7.4.1298
Problem: When the channel test fails in an unexpected way the server keeps
running.
Solution: Use try/catch. (Ozaki Kiichi)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 10 Feb 2016 20:45:05 +0100 |
parents | 226ed297307f |
children | 64035abb986b |
rev | line source |
---|---|
7 | 1 /* |
2 * An extremely simple program to make the cursor blink in an xterm. | |
3 * This is useful when the cursor is hard to spot in a highlighted file. | |
4 * Start in the background: "blink&" Stop by killing it. | |
5 * Bram Moolenaar 980109 (based on an idea from John Lange). | |
6 */ | |
7 | |
8 #include <stdio.h> | |
9 | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
10 int |
7 | 11 main() |
12 { | |
13 while (1) | |
14 { | |
15 printf("\e[?25h"); | |
16 fflush(stdout); | |
17 usleep(400000); /* on time */ | |
18 printf("\e[?25l"); | |
19 fflush(stdout); | |
20 usleep(250000); /* off time */ | |
21 } | |
7856
226ed297307f
commit https://github.com/vim/vim/commit/d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
22 return 0; |
7 | 23 } |