mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 10:56:31 +00:00
refactor: change FALSE/TRUE to false/true
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
This commit is contained in:
@@ -188,7 +188,7 @@ struct exarg {
|
||||
cmdidx_T cmdidx; ///< the index for the command
|
||||
uint32_t argt; ///< flags for the command
|
||||
int skip; ///< don't execute the command, only parse it
|
||||
int forceit; ///< TRUE if ! present
|
||||
int forceit; ///< true if ! present
|
||||
int addr_count; ///< the number of addresses given
|
||||
linenr_T line1; ///< the first line number
|
||||
linenr_T line2; ///< the second line number or count
|
||||
@@ -196,8 +196,8 @@ struct exarg {
|
||||
int flags; ///< extra flags after count: EXFLAG_
|
||||
char *do_ecmd_cmd; ///< +command arg to be used in edited file
|
||||
linenr_T do_ecmd_lnum; ///< the line number in an edited file
|
||||
int append; ///< TRUE with ":w >>file" command
|
||||
int usefilter; ///< TRUE with ":w !command" and ":r!command"
|
||||
int append; ///< true with ":w >>file" command
|
||||
int usefilter; ///< true with ":w !command" and ":r!command"
|
||||
int amount; ///< number of '>' or '<' for shift command
|
||||
int regname; ///< register name (NUL if none)
|
||||
int force_bin; ///< 0, FORCE_BIN or FORCE_NOBIN
|
||||
@@ -230,7 +230,7 @@ struct expand {
|
||||
sctx_T xp_script_ctx; // SCTX for completion function
|
||||
int xp_backslash; // one of the XP_BS_ values
|
||||
#ifndef BACKSLASH_IN_FILENAME
|
||||
int xp_shell; // TRUE for a shell command, more
|
||||
int xp_shell; // true for a shell command, more
|
||||
// characters need to be escaped
|
||||
#endif
|
||||
int xp_numfiles; // number of files found by file name completion
|
||||
|
Reference in New Issue
Block a user