diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-07 00:33:20 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-07 00:33:57 +0200 |
commit | 1ae7744f42fe60ebc2caa383be4d17e714c71c5f (patch) | |
tree | af405450d4a56deadafaf4aff07b38f254a5cc01 /src/nvim/option.c | |
parent | 852f21ed0587195fa1b1f2cf0b3b89e6cb03e676 (diff) | |
download | rneovim-1ae7744f42fe60ebc2caa383be4d17e714c71c5f.tar.gz rneovim-1ae7744f42fe60ebc2caa383be4d17e714c71c5f.tar.bz2 rneovim-1ae7744f42fe60ebc2caa383be4d17e714c71c5f.zip |
lint
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 0c423c900f..cc7f8333ff 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -969,7 +969,8 @@ void set_init_2(bool headless) p_window = Rows - 1; } set_number_default("window", Rows - 1); -#if 0 // This bodges around problems that should properly be fixed in the TUI layer. +#if 0 + // This bodges around problems that should be fixed in the TUI layer. if (!headless && !os_term_is_nice()) { set_string_option_direct((char_u *)"guicursor", -1, (char_u *)"", OPT_GLOBAL, SID_NONE); |