diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-06-30 14:27:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 20:27:52 +0800 |
commit | cb84f5ee530f0f32b92bed5b4ad41344e8b551aa (patch) | |
tree | c6322c4742fca83982ac895d0d0d6975159a5690 | |
parent | 69cd0ba27bfc595b643cde0d9f1156ee144dee4a (diff) | |
download | rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.tar.gz rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.tar.bz2 rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.zip |
refactor(uncrustify): change config to better align with style guide (#18803)
refactor(uncrustify): change config to better align with neovim style
-rw-r--r-- | src/nvim/eval/funcs.c | 2 | ||||
-rw-r--r-- | src/nvim/eval/typval_encode.c.h | 2 | ||||
-rw-r--r-- | src/nvim/fileio.c | 4 | ||||
-rw-r--r-- | src/nvim/func_attr.h | 2 | ||||
-rw-r--r-- | src/nvim/memline.c | 2 | ||||
-rw-r--r-- | src/nvim/normal.c | 2 | ||||
-rw-r--r-- | src/uncrustify.cfg | 20 |
7 files changed, 17 insertions, 17 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index 85ab51da5d..f50b355045 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -91,13 +91,11 @@ typedef enum { # pragma function(floor) # endif -// uncrustify:off PRAGMA_DIAG_PUSH_IGNORE_MISSING_PROTOTYPES PRAGMA_DIAG_PUSH_IGNORE_IMPLICIT_FALLTHROUGH # include "funcs.generated.h" PRAGMA_DIAG_POP PRAGMA_DIAG_POP -// uncrustify:on #endif static char *e_listblobarg = N_("E899: Argument of %s must be a List or Blob"); diff --git a/src/nvim/eval/typval_encode.c.h b/src/nvim/eval/typval_encode.c.h index 8c952473a1..73b36b8611 100644 --- a/src/nvim/eval/typval_encode.c.h +++ b/src/nvim/eval/typval_encode.c.h @@ -1,3 +1,5 @@ +// uncrustify:off + /// @file eval/typval_encode.c.h /// /// Contains set of macros used to convert (possibly recursive) typval_T into diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 33ae1dbad0..9ba55befdd 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -4886,13 +4886,11 @@ int buf_check_timestamp(buf_T *buf) char *mesg2 = ""; bool helpmesg = false; - // uncrustify:off enum { RELOAD_NONE, RELOAD_NORMAL, - RELOAD_DETECT + RELOAD_DETECT, } reload = RELOAD_NONE; - // uncrustify:on bool can_reload = false; uint64_t orig_size = buf->b_orig_size; diff --git a/src/nvim/func_attr.h b/src/nvim/func_attr.h index afbd87f2be..6c049df6ff 100644 --- a/src/nvim/func_attr.h +++ b/src/nvim/func_attr.h @@ -113,7 +113,7 @@ // void myfunc(void) REAL_FATTR_ALWAYS_INLINE; # define REAL_FATTR_MALLOC __attribute__((malloc)) # define REAL_FATTR_ALLOC_ALIGN(x) __attribute__((alloc_align(x))) -# define REAL_FATTR_PURE __attribute__ ((pure)) +# define REAL_FATTR_PURE __attribute__((pure)) # define REAL_FATTR_CONST __attribute__((const)) # define REAL_FATTR_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) # define REAL_FATTR_ALWAYS_INLINE __attribute__((always_inline)) diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 43fa7a0dd7..ce47e0add6 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -3,7 +3,7 @@ // for debugging // #define CHECK(c, s) do { if (c) emsg(s); } while (0) -#define CHECK(c, s) do { } while (0) +#define CHECK(c, s) do {} while (0) /* * memline.c: Contains the functions for appending, deleting and changing the diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 1ca403965c..aeb85eba1c 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -1022,7 +1022,7 @@ static int normal_execute(VimState *state, int key) s->need_flushbuf = add_to_showcmd(s->c); - while (normal_get_command_count(s)) { } + while (normal_get_command_count(s)) {} if (s->c == K_EVENT) { // Save the count values so that ca.opcount and ca.count0 are exactly diff --git a/src/uncrustify.cfg b/src/uncrustify.cfg index 731224fd8d..2b9396e635 100644 --- a/src/uncrustify.cfg +++ b/src/uncrustify.cfg @@ -1,4 +1,4 @@ -# Uncrustify-0.75.0_f +# Uncrustify-0.75.1_f # # General options @@ -7,7 +7,7 @@ # The type of line endings. # # Default: auto -newlines = auto # lf/crlf/cr/auto +newlines = lf # lf/crlf/cr/auto # The original size of tabs in the input. # @@ -335,7 +335,7 @@ sp_inside_sparen = remove # ignore/add/remove/force/not_defined # Add or remove space after '(' of control statements other than 'for'. # # Overrides sp_inside_sparen. -sp_inside_sparen_open = remove # ignore/add/remove/force/not_defined +sp_inside_sparen_open = ignore # ignore/add/remove/force/not_defined # Add or remove space before ')' of control statements other than 'for'. # @@ -591,7 +591,7 @@ sp_inside_type_brace_init_lst = ignore # ignore/add/remove/force/not_defined sp_inside_braces = add # ignore/add/remove/force/not_defined # Add or remove space inside '{}'. -sp_inside_braces_empty = ignore # ignore/add/remove/force/not_defined +sp_inside_braces_empty = remove # ignore/add/remove/force/not_defined # Add or remove space around trailing return operator '->'. sp_trailing_return = ignore # ignore/add/remove/force/not_defined @@ -691,10 +691,10 @@ sp_return_paren = force # ignore/add/remove/force/not_defined sp_return_brace = ignore # ignore/add/remove/force/not_defined # Add or remove space between '__attribute__' and '('. -sp_attribute_paren = ignore # ignore/add/remove/force/not_defined +sp_attribute_paren = remove # ignore/add/remove/force/not_defined # Add or remove space between 'defined' and '(' in '#if defined (FOO)'. -sp_defined_paren = ignore # ignore/add/remove/force/not_defined +sp_defined_paren = remove # ignore/add/remove/force/not_defined # Add or remove space between 'throw' and '(' in 'throw (something)'. sp_throw_paren = ignore # ignore/add/remove/force/not_defined @@ -1677,7 +1677,7 @@ nl_enum_colon_type = ignore # ignore/add/remove/force/not_defined nl_struct_brace = remove # ignore/add/remove/force/not_defined # Add or remove newline between 'union' and '{'. -nl_union_brace = ignore # ignore/add/remove/force/not_defined +nl_union_brace = remove # ignore/add/remove/force/not_defined # Add or remove newline between 'if' and '{'. nl_if_brace = remove # ignore/add/remove/force/not_defined @@ -1921,7 +1921,7 @@ nl_func_call_paren = ignore # ignore/add/remove/force/not_defined nl_func_call_paren_empty = ignore # ignore/add/remove/force/not_defined # Add or remove newline after '(' in a function declaration. -nl_func_decl_start = ignore # ignore/add/remove/force/not_defined +nl_func_decl_start = remove # ignore/add/remove/force/not_defined # Add or remove newline after '(' in a function definition. nl_func_def_start = remove # ignore/add/remove/force/not_defined @@ -3508,10 +3508,12 @@ set QUESTION FUNC_ATTR_PRINTF set QUESTION FUNC_ATTR_PURE set QUESTION FUNC_ATTR_UNUSED set QUESTION FUNC_ATTR_WARN_UNUSED_RESULT +set PP_PRAGMA PRAGMA_DIAG_PUSH_IGNORE_IMPLICIT_FALLTHROUGH +set PP_PRAGMA PRAGMA_DIAG_PUSH_IGNORE_MISSING_PROTOTYPES set QUESTION REAL_FATTR_ALWAYS_INLINE set QUESTION REAL_FATTR_CONST set QUESTION REAL_FATTR_NONNULL_ALL set QUESTION REAL_FATTR_PURE set QUESTION REAL_FATTR_WARN_UNUSED_RESULT -# option(s) with 'not default' value: 97 +# option(s) with 'not default' value: 102 # |