Alignment tab fill style

EditorConfig key: cpp-alignment-tab-fill-style

Alignment tab fill style

cpp-alignment-tab-fill-style

Strategy used to fill alignment whitespace when tabs are enabled.

Default value:

unset

Possible values:

  • unset
  • use_spaces
  • use_tabs_only
  • optimal_fill

Examples

unset
use_spaces
int    x = 1; // spaces only
int    y = 22;
use_tabs_only
int	x = 1; // tabs only
int	y = 22;
optimal_fill
int	 x = 1; // tabs + spaces
int	 y = 22;