mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +00:00
normal: Add figure braces so that code is clearer
This commit is contained in:
@@ -7613,12 +7613,14 @@ static void nv_record(cmdarg_T *cap)
|
||||
if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') {
|
||||
stuffcharReadbuff(cap->nchar);
|
||||
stuffcharReadbuff(K_CMDWIN);
|
||||
} else
|
||||
/* (stop) recording into a named register, unless executing a
|
||||
* register */
|
||||
if (!Exec_reg && do_record(cap->nchar) == false)
|
||||
} else {
|
||||
// (stop) recording into a named register, unless executing a
|
||||
// register.
|
||||
if (!Exec_reg && do_record(cap->nchar) == false) {
|
||||
clearopbeep(cap->oap);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user