Changes between Version 2 and Version 3 of ConfiguringIDE
- Timestamp:
- 07/18/2016 10:56:11 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ConfiguringIDE
v2 v3 10 10 The following settings apply to all text editors include Java and XML editors. To change these settings open the IDE preferences and go to ''General'' > ''Editors'' > ''Text Editors'': 11 11 12 * '''Insert spaces for tabs''' will replace tabs with spaces and avoid mix of tabs and spaces which can result in misalignment in some systems. The number of spaces for each tab is specified in '''Displayed tab width'''. 12 * '''Insert spaces for tabs''' will replace tabs with spaces and avoid mix of tabs and spaces which can result in misalignment in some systems. The number of spaces for each tab is specified in '''Displayed tab width'''. Keep in mind for Java Editors there is a separate setting for this. 13 13 * '''Show line numbers''' will display the line number on the left side of the text editor. This helps when searching for bugs based on exception stacktraces or when talking with colleagues about the code. 14 14 * '''Show whitespace characters''' similar to Word this will show spaces, tabs and returns. This is sometimes useful when lines are much indented or non-ASCII characters. The link ''configure visibility'' lets you choose which characters to show and also the transparency level. 15 15 16 16 [[Image(configuration_texteditor.png)]] 17 18 == Placing of semicolon and braces == 19 An often occurring problem is as missing semicolon or brace in a code line. Enabling the automatic placement will add the semicolon or brace at the right place in the line independend where you type. This option can be found in the preferences in ''Java'' > ''Editor'' > ''Typing''. 20 21 [[Image(configuration_typing.png)]] 17 22 18 23 == Link the editors with the Package Explorer view ==