Lets you control the tab settings.
Normally, Jalopy uses spaces to indent lines. If you prefer hard tabs, check this option. You can change the original tab indent on the general indentation settings page, see the Original Tab indent option.
Please note that it is very important that you specify the correct tab size for your original sources on the general indentation page.
Example 2.328. Use tabs for indentation
» if ( true ) { » » methodCall(param1, » » » param2 » » » param3); » }
When enabled, tabs are only used up to the current brace level, spaces are used afterwards.
Example 2.329. Leading indentation
» if (test()) {
» » methodCall(param1,
» » ····param2
» » ····param3);
» }
When enabled, hard tabs are used for printing indentation in comments.
Since 1.2.1
Example 2.330. Comment that uses spaces for indentation
//······System.out.println("DEBUG: line=" + _line);
Example 2.331. Comment that uses tabs for indentation
//» »···System.out.println("DEBUG: line=" + _line);