diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-02-22 22:14:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-22 22:14:38 +0100 |
commit | 246408621c405a6c0f24e2e5cd66e8776eb04fe6 (patch) | |
tree | 3e706707a7749acd0f8f2d2ce54e5b15b518f08a /src/nvim/globals.h | |
parent | 4f453830f7f5546b39d60431391deed40b066e16 (diff) | |
parent | d3dc94615523a71606edcbe6bf528f8b49a78c7d (diff) | |
download | rneovim-246408621c405a6c0f24e2e5cd66e8776eb04fe6.tar.gz rneovim-246408621c405a6c0f24e2e5cd66e8776eb04fe6.tar.bz2 rneovim-246408621c405a6c0f24e2e5cd66e8776eb04fe6.zip |
Merge #9509 'TUI: detect background color'
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index f47697b190..a988af79b2 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -83,10 +83,10 @@ EXTERN struct nvim_stats_s { int64_t redraw; } g_stats INIT(= { 0, 0 }); -/* Values for "starting" */ -#define NO_SCREEN 2 /* no screen updating yet */ -#define NO_BUFFERS 1 /* not all buffers loaded yet */ -/* 0 not starting anymore */ +// Values for "starting". +#define NO_SCREEN 2 // no screen updating yet +#define NO_BUFFERS 1 // not all buffers loaded yet +// 0 not starting anymore /* * Number of Rows and Columns in the screen. |