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

1 2 next
vote up 9 vote down check

Really hidden: Help, About, hold the Alt key and type TEAM.

link|flag
2  
Just realized - in D2007, do this trick, then double-click on the scrolling credits to get a picture – JosephStyons Jul 13 at 19:59
show 3 more comments
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
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 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

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 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 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 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 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 3 vote down

I find the -r command line switch very useful.

link|flag
vote up 2 vote down

Incremental Search in the Object Inspector here

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 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

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 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

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 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 5 vote down

Hidden deep in Delphi's help (Delphi 7 at least) is how to use macros (useful for repetitive tasks):

  1. Press Ctrl+Shift+R to begin recording a macro.
  2. Enter the keystrokes you want to record.
  3. Press Ctrl+Shift+R to finish and save the macro.
  4. To play back the macro, press Ctrl+Shift+P.

Tip: you can use any keyboard shortcuts available while recording the macro (e.g. Ctrl+C for copy, Ctrl+V for paste).

link|flag
vote up 2 vote down

Resize the Code completion popup (invoke via Ctrl+Space) by dragging its borders. The new size will be remembered.

link|flag
vote up 2 vote down

Ctrl+Click on a line in the Code completion popup (invoke via Ctrl+Space) to jump to the definition of the symbol.

link|flag
vote up 2 vote down

Probably not so hidden but:
Ctrl + alternating between K and I block indents code to the right.
Ctrl + alternating between K and U block indents code to the left.

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

Have someone mention CTRL+SHIFT+G to generate / insert a new GUID at the cursor position ?

CTRL+ALT+P to activate Pallete Window and do component filtering depend on the text you entered (Delphi 2005+)

link|flag
vote up 1 vote down

I'm not sure if this still works in newer versions, but up until at least Delphi 7, you can go to the Help|About dialog, hold down ALT and type TEAM.

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

You probably know that Alt+F7 and Alt+F8 navigate back/forward through the results of a "Find in Files"

But did you know that when the compiler spits out a list of errors during compilation that Alt+F7 and Alt+F8 now navigate through the errors.

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

uses windows

outputdebugstring('my debug info')

I automap "ods" -> "outputdebugstring(pansichar(format("|",[]))"

and use CTRL-J to auto-do it. Very handy, you can use CN-Pack debugviewer, or sysinternals, or whatever to view the debug messages, it's way better than messageboxes and no on yells at you when you leave them in the build!

link|flag
vote up 2 vote down

With G-Experts
CTRL-SHIFT-S opens up a grep search (and replace) is waaaay better than searching using windows.
I prefer it even to google desktop search, which incidentally has a delphi source code plug in.

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

With CN Pack
CTRL-V jumps to var block and back
CTRL-/ comments in/out selected lines


Also the code block highlighter is awesome, it color codes your nested statements

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

Hold Alt and Drag the mouse in the editor to block-select.

link|flag
vote up 0 vote down

Including extensions, the must have extension from GExperts is GDebug. It's comprised of a unit and an executable.

When you include the unit you insert send messages through out your code to notify you of events, variable values, progress, etc.

The executable creates a system tray icon that simply captures all the messages and time stamps them.

The messages work inside and out of the IDE, but it's rather easy to drop some checks for 'DebugHook <> 0' into the gdebug.pas unit if you want to mute it when not debugging.

This simple tool has greatly simplified my life for situations where I don't want to setup break points, steps, hit counts, watches, etc. or for situations where the behavior is sporadic, different under the ide or not even necessarily erroneous.

link|flag
vote up 3 vote down

Ctrl-Shift-E invokes the rename refactor. It's available in Delphi 2005+. It allows you to quickly rename a function or variable and all references to it via one pop up dialog. This is the best refactor in the IDE imho.

Second best rename trick is too highlight a block of code, click on the icon that appears in the left hand gutter, then select and rename the variable you want to rename. This will rename all copies of that variable within the selection. This is most useful for renaming a local variable to split it from another copy of it.

link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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