summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/documentation/htdocs/options_Align.html
blob: 474e95642b8cdb1651fa404600eabff73a2b034e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#define SUCCESS    0
                █
align_pp_define_gap
The minimum space between label and value of a preprocessor define

#define SetType(tt)      do { \
      LOG_FUNC_CALL(); \
      SetTypeReal((tt)); \
} while (false)
align_nl_cont                 = true

#define LOG_STR(sev, str, len)                           \
   if (log_sev_on(sev)) { log_str(sev, str, len); }
                                                          █
nl_after_brace_close


extern struct cp_data cpd;

extern bool           QT_SIGNAL_SLOT_found;
extern int            QT_SIGNAL_SLOT_level;
extern bool           restoreValues;
align_var_def_span    █

enum argval_t
{
   AV_IGNORE      = 0,
   AV_ADD         = 1,
   AV_REMOVE      = 2,
   AV_FORCE       = 3, /**< remove + add */
   AV_NOT_DEFINED = 4  /* to be used with QT, SIGNAL SLOT macros */
};
                  █
align_var_struct_span


   UO_indent_var_def_blk,            // indent a variable def block that appears at the top
   UO_indent_var_def_cont,
   UO_indent_shift,                  // if a shift expression spans multiple lines, indent

   UO_indent_min_vbrace_open,        // min. indent after virtual brace open and newline
   UO_indent_vbrace_open_on_tabstop, // when identing after virtual brace open and newline add further spaces to reach next tabstop

align_right_cmt_span