vote up 25 vote down star
23

The "Hidden Features" series here on StackOverflow has generated some really interesting feedback. So what about my favorite IDE, Delphi? What are some hidden features there?

I'll start with one of my own:

You can invoke inline find by typing Ctrl+E, then typing your search term.

flag

46 Answers

prev 1 2
vote up 5 vote down

If you press Ctrl+Space while in the interface section of a class, you will get a list of methods you can override and properties you can publish. Methods listed in red must be implemented (they're abstract or from an interface).

link|flag
vote up 2 vote down

I did not discover this until recently, but now I use it a lot. If you press Ctrl-Shift while the cursor is over an identifier, you can see the places that identifier is referenced in your entire project. Very useful if you are trying to figure out where a change is happening or what you will break if you change something.

link|flag
show 2 more comments
vote up 1 vote down

Navigating methods in a unit:

Ctrl+Alt+Up/Down - move to previous/next method Ctrl+Alt+Home/End - move to the first/last method in the unit

Introduced after Delphi 7. Works in Delphi Delphi 2006, but I'm not sure about Delphi 2005.

link|flag
vote up 2 vote down

Alt+End: to navigate through opened windows in the IDE (undocked view).

Ctlr+Y: to delete the current line

Alt+Up: same as Ctrl+Click or Find declaration

Alt+Arrow Left/Right: navigate through your 'Find declarations'

link|flag
vote up 4 vote down

Team pictures

Tested in Delphi 2007 and 2009.

  • Go to Help|About
  • Hold town the Alt key ant type T E A M to get the scrolling team list.
  • Double-click on the list to see the team picture.

Bonus: - Help|About - Hold down the Alt key and type G U N G L A

link|flag
vote up 2 vote down

Select a unit or the project in the Project Manager and rename it using either F2/Inplace Edit or by changing it in the Obejct Inspector, and it does essentially the same thing as Save As...

link|flag
vote up 2 vote down

Incremental Search in the Object Inspector here

link|flag
vote up 3 vote down

I find the -r command line switch very useful.

link|flag
vote up 2 vote down

Auto-correct in the Editor

There are a handful of words I seem to regularly mistype, such as stirng for string, tehn for then, etc.

So, I define a Live Template that is keyed off the incorrectly spelled word that automatically changes it to the correct spelling. eg, this one to convert tehn to then:

<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates" version="1.0.0">
    <template name="tehn" invoke="auto">
    	<description>Auto-correct tehn into then</description>
    	<author>Malcolm Groves</author>
    	<code language="Delphi" context="methodbody" delimiter="|"><![CDATA[then |end|]]></code>
    </template>
</codetemplate>
link|flag
vote up 2 vote down

My favorites, for fast keyboard-only navigation between many (open) units in the Delphi editor :

Ctrl + Alt + F12 opens up the top-right dropdown menu of opened units

Ctrl + F12 opens up a window with all units of the current project (or project-group if you check the mark for it)

Shift + F12 opens up a window with all forms of the current project (or project-group if you check the mark for it)

Also have a look at the DevExtensions plugin which improves upon those dialogs in various useful ways. For example : One thing I like about this extension is, that it allows substring filtering (instead of the start-of-string searching that the original "View Unit" dialog offers)!

link|flag
vote up 0 vote down

If you have GExperts installed (and you should), you can press [Control] + [Shift ] + [f] while the cursor is on some component's name, in the source code, and the component will be selected in the form. Very useful.

link|flag
vote up 1 vote down

Ctrl + E -> incremental search. In case you find "Ctrl+F" with the dialogue too much of an hassle.

link|flag
vote up 2 vote down

Code folding:

  • Ctrl+Shift+K+A Expands All blocks of code
  • Ctrl+Shift+K+E Collapse current block of code
  • Ctrl+Shift+K+U Expand current block of code
  • Ctrl+Shift+K+T Toggle Current block (expand & collapse)
  • Ctrl+Shift+K+R Collapses all regions {$region 'comment'}..{$endregion}
  • Ctrl+Shift+K+P Collapse nested procedures
  • Ctrl+Shift+K+M Collapse all methods
  • Ctrl+Shift+K+C Collapse all classes
  • Ctrl+Shift+K+G Collapses down to primary Groups [Interface/Implementation]
  • Ctrl+Shift+K+N Collapses Namespace/Unit

This and others shortcuts in a little unknown wiki.

link|flag
vote up 2 vote down

The command line switch -np starts Delphi without loading the last used project.

link|flag
show 1 more comment
vote up 2 vote down

In the editor, you can hold down the alt key and drag select to perform a block selection.

link|flag
vote up 1 vote down

Ctrl+Arrows moves control one pixel.

Ctrl+Shift+Arrows moves control several pixels.

Another nice feature is Sync Edit Mode, invoked by selecting several rows and pressing ctrl + shift + j (or clicking the icon that appears on the left). This allows you to change all instances of the same text at once, e.g. variable names, function calls...

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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