mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 23:08:16 +00:00
getchar: Fix if block indentation
This commit is contained in:
@@ -1849,13 +1849,14 @@ static int vgetorpeek(int advance)
|
||||
mp_match = mp;
|
||||
mp_match_len = keylen;
|
||||
}
|
||||
} else
|
||||
/* No match; may have to check for
|
||||
* termcode at next character. */
|
||||
if (max_mlen < mlen)
|
||||
} else {
|
||||
// No match; may have to check for termcode at next character.
|
||||
if (max_mlen < mlen) {
|
||||
max_mlen = mlen;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* If no partly match found, use the longest full
|
||||
* match. */
|
||||
|
Reference in New Issue
Block a user