@ Brian
I still haven't found the list of "%/$" functions I made years ago but I see you managed to work out most of them from the config.file I sent you...

However in you list the f,F & p,P are wrong...

"%p%f" (lower case) will insert/select the SOURCE PathName/FileName
"%P%F" (Capitals) will insert/select the DESTINATION PathName/FileName
(also remember to put them in quotation marks in the config editor when setting up programs to launch/run things or it will only get as far as the pathname...)
EG:
eg: say you had a button to edit text/ascii files you would use...
C:ED "%p%f"
(for editing the selected file in the SOURCE list)
or
C:ED "%P%F"
(for editing the selected file in the DESTINATION list)
It can get a bit more tricky than this depending on how you configure things and you can actually get away with just using the lower case %p%f but it all depends on how you choose to configure things...
Some of the other things I changed in the re-compiled version I use is the Topaz font is no longer used for the display and instead I use a font I made myself which is only 7 pixels wide allowing more buttons and full 30 char Amiga filenames to be displayed...



One of the really handy things about Dirwork is the ability to select any file by it's type without relying on it having an extension like ".info" or ".doc" etc...

Instead of using "match pattern" use " enter match string" instead. This allows DirWork to automatically look inside all files and find out what type of file it is...

In the example below this would match all files with the following inside them at the offset "m" (where m = the number of bytes to search from) and the "v" indicates the actual search values in hex...
In the example below it would find and recognise an AGA IFF ILBM picture file...

v464F524D = look for Ascii "FORM"
m8 = move into the file 8 bytes
v494C424D = look for Ascii "ILBM"
m1C = move into the file another $1c bytes
v07 = check for hex value 7 that would indicate 7 bitplanes are being used and therefore the file is AGA not ECS
(The above is not a perfect example but more of just to give you an idea of how this powerful file search/indicator works)...

Hope that helps a wee bit for now till I can find all the stuff I wrote about just how the configuration editor works...
