vote up 1 vote down star

Now that I have a widescreen monitor, I can't seem to find a way to make the Delphi IDE wrap generated code at anything other than 80 chars. I've set the "Right margin" setting in the IDE Editor options to a high value, but it doesn't appear to affect the wrapping that happens on generated events and code lines. Does anyone know of a way to set it? Perhaps a hidden registry setting? Alternately, are there any IDE addons that do this? Thanks for any suggestions!

flag

71% accept rate

3 Answers

vote up 10 vote down check

In D2007 and up, setting Tools|Options|Editor Options|Display|Right margin to 100 causes the event generated from the Object Inspector to wrap after the 100th character...

I just tried :

procedure TForm7.AVeryLongMethodNameqwertyuiopasdfghjklzxcvbnm(Sender: TObject; Shift: TShiftState;
  MousePos: TPoint; var Handled: Boolean);
link|flag
1  
Same in D2006. Galileo DOES have some advantages over D7 (would hate to lose refactoring and SyncEdit as well) – Gerry Aug 20 at 0:04
Thanks! I just tested on D2009 and you are right on. I thought I had already tested that, but I must have been looking at an event I generated with the lower setting. Much appreciated. – MarkF Aug 20 at 2:21
vote up 2 vote down

Those events which are inserted using code templates can be modified by editing the template files (they are xml documents in the C:\Program Files\CodeGear\RAD Studio\xxxx\ObjRepos\Code_Templates\Delphi directory)

As far as I know there is no plugin or setting to change where generated code wraps outside of templates.

link|flag
Thanks. I meant code inserted by selecting VCL events or class completion, not live templates. – MarkF Aug 19 at 22:24
I covered both, I believe that the generated code from VCL events or class completion is hard coded at 80 and that there is no current setting to change this. – skamradt Aug 19 at 22:50
vote up 1 vote down

Until the IDE offers a little more flexibility or configuration in this area, one option might be to use a code formatting tool to tidy up the code inserted by the IDE.

Delphi 2010 will come with a highly configurable code formatter "built in", but there are other alternatives available now. One which comes with an IDE plug-in is the JEDI Code Formatter, and the information pages for that contain references to other alternatives which may be of help even if the JEDI solution itself is not.

link|flag
Thanks! I'll have to take a look at those. – MarkF Aug 20 at 2:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.