mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 10:56:31 +00:00
refactor: saner options for uncrustify (#16204)
* sp_enum_after_assign = force * sp_brace_typedef = force * nl_do_brace = remove * sp_do_brace_open = force * sp_brace_close_while = force * sp_before_semi = remove * sp_before_semi_for = remove * sp_before_semi_for_empty = remove * sp_between_semi_for_empty = remove * sp_after_semi_for_empty = remove * sp_before_square = remove * sp_before_squares = remove * sp_inside_square = remove * sp_inside_fparens = remove * sp_inside_fparen = remove * sp_inside_tparen = remove * sp_after_tparen_close = remove * sp_return_paren = force * pos_bool = lead * sp_pp_concat = remove * sp_pp_stringify = remove * fixup: disable formatting for the INIT section
This commit is contained in:
@@ -135,10 +135,10 @@ typedef struct {
|
||||
|
||||
// Flags for the cs_lflags item in cstack_T.
|
||||
enum {
|
||||
CSL_HAD_LOOP = 1, // just found ":while" or ":for"
|
||||
CSL_HAD_LOOP = 1, // just found ":while" or ":for"
|
||||
CSL_HAD_ENDLOOP = 2, // just found ":endwhile" or ":endfor"
|
||||
CSL_HAD_CONT = 4, // just found ":continue"
|
||||
CSL_HAD_FINA = 8, // just found ":finally"
|
||||
CSL_HAD_CONT = 4, // just found ":continue"
|
||||
CSL_HAD_FINA = 8, // just found ":finally"
|
||||
};
|
||||
|
||||
/// Arguments used for Ex commands.
|
||||
|
Reference in New Issue
Block a user