Difference between revisions of "Editor Tweaks plugin"
From Code::Blocks
(Created page with "Category: Code::Blocks Contrib Plugins {{Infobox_Plugin| name = EditorTweaks | logo = File:Generic-plugin.png | developer = Damien Moore | maintainer = | versio...") |
m |
||
Line 19: | Line 19: | ||
* ''insert'' key suppression | * ''insert'' key suppression | ||
− | From the merge with the [[Aligner]] | + | From the merge with the [[Aligner plugin]], it has the ability to make sections of code more readable by aligning a specific character. For example, aligning the "=" in |
<source lang="cpp"> | <source lang="cpp"> | ||
int var = 1; | int var = 1; |
Revision as of 19:08, 11 September 2011
The EditorTweaks plugin contains several different features. On a per-file basis, it controls
- word-wrap
- line-numbers
- tab key emissions (tab characters or spaces)
- number of spaces the tab key emits
- end of line characters (carriage-return + linefeed; carriage-return; linefeed)
- visibility of end of line characters
- on-demand striping of trailing white-space
- on-demand synchronization of end of line characters
- insert key suppression
From the merge with the Aligner plugin, it has the ability to make sections of code more readable by aligning a specific character. For example, aligning the "=" in
int var = 1;
int longVarName = 2;
int foobar = 3;
will result in
int var = 1;
int longVarName = 2;
int foobar = 3;