mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
Document skip_colon_white()
This commit is contained in:
@@ -1201,6 +1201,10 @@ static void get_wincmd_addr_type(char_u *arg, exarg_T *eap)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Skip colons and trailing whitespace, returning a pointer to the first
|
||||||
|
/// non-colon, non-whitespace character.
|
||||||
|
//
|
||||||
|
/// @param skipleadingwhite Skip leading whitespace too
|
||||||
static char_u *skip_colon_white(const char_u *p, bool skipleadingwhite)
|
static char_u *skip_colon_white(const char_u *p, bool skipleadingwhite)
|
||||||
{
|
{
|
||||||
if (skipleadingwhite) {
|
if (skipleadingwhite) {
|
||||||
|
Reference in New Issue
Block a user