Editor Tweaks plugin

From Code::Blocks
Revision as of 19:08, 11 September 2011 by Alpha (talk | contribs) (moved Editor Tweaks to Editor Tweaks plugin)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
EditorTweaks
Generic-plugin.png
Developer(s): Damien Moore
Maintainer(s):
Version: 0.1

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;