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

declaring a typed constant inside a routine will actually act like a static variable with local scope, e.g.:

{$WRITEABLECONST ON}
procedure TForm1.Button1Click(Sender: TObject);
const
  i: Integer = 0;
begin
  Inc(i);
  ShowMessageFmt('You clicked me %d times!', [i]);
end;
link|flag
show 1 more comment
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 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 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 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 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 1 vote down

Ctrl-Alt + Up/Down performs a word search on the symbol that the cursor is currently located on

(EDIT: not entirely correct it seems, I think it comes from GExperts - without it, this shortcut will navigate to the next/previous function/method body)

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

Random access violation errors generator.

link|flag
show 1 more comment
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.