diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-04 02:37:43 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-04 14:19:26 +0200 |
commit | e348e256f3ed93fe462971447ee79033307b2ddf (patch) | |
tree | b8c255d5249d493fce85b33506988ed8649b7780 /src/nvim/main.c | |
parent | 3ccd59ee8216f3da812c5cf81eb392e6a95b539a (diff) | |
download | rneovim-e348e256f3ed93fe462971447ee79033307b2ddf.tar.gz rneovim-e348e256f3ed93fe462971447ee79033307b2ddf.tar.bz2 rneovim-e348e256f3ed93fe462971447ee79033307b2ddf.zip |
'guicursor': Disable by default for unknown terminals.
User can still set guicursor explicitly in init.vim.
Closes #5990
Closes #6403
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 33e1551351..7ad42d6776 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -283,7 +283,7 @@ int main(int argc, char **argv) cmdline_row = (int)(Rows - p_ch); msg_row = cmdline_row; screenalloc(false); /* allocate screen buffers */ - set_init_2(); + set_init_2(params.headless); TIME_MSG("inits 2"); msg_scroll = TRUE; |