aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-12-30 23:54:23 +0100
committerGitHub <noreply@github.com>2018-12-30 23:54:23 +0100
commit725da1feeb9a1e2c76533ef2df5e86b1b972c78b (patch)
tree3e4420a8a3f90c05f80c0e3dd7b42c773c0b63c1 /src/nvim/option.c
parent92806827a9f22828cdfd3573f6cf2c827808e641 (diff)
parent5749ecaf228f4a963a4e96ada831f902c73a1e80 (diff)
downloadrneovim-725da1feeb9a1e2c76533ef2df5e86b1b972c78b.tar.gz
rneovim-725da1feeb9a1e2c76533ef2df5e86b1b972c78b.tar.bz2
rneovim-725da1feeb9a1e2c76533ef2df5e86b1b972c78b.zip
Merge #9401 from justinmk/pr-win-erw7
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 11f3df7cfa..8c692f9f42 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -955,13 +955,6 @@ void set_init_2(bool headless)
p_window = Rows - 1;
}
set_number_default("window", Rows - 1);
-#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);
- }
-#endif
parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor'
(void)parse_printoptions(); // parse 'printoptions' default value
}