mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
'guicursor': enabled=false if 'guicursor' is empty
Closes #6429 Closes #6430
This commit is contained in:
@@ -89,10 +89,8 @@ char_u *parse_shape_opt(int what)
|
||||
int found_ve = false; /* found "ve" flag */
|
||||
int round;
|
||||
|
||||
/*
|
||||
* First round: check for errors; second round: do it for real.
|
||||
*/
|
||||
for (round = 1; round <= 2; ++round) {
|
||||
// First round: check for errors; second round: do it for real.
|
||||
for (round = 1; round <= 2; round++) {
|
||||
// Repeat for all comma separated parts.
|
||||
modep = p_guicursor;
|
||||
if (*p_guicursor == NUL) {
|
||||
|
Reference in New Issue
Block a user