News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

External tools

Started by Emmanuel Delahaye, February 20, 2005, 10:57:33 AM

Previous topic - Next topic

Emmanuel Delahaye

Hi,

I'am trying to install an external tool (actually, a code indenter), and despite some research into the help files and FAQ, I was unable to find the parameter syntax for the command line. On UltraEdit, I use "%F"
...\indent.bat %F
to specify the focused source file. What would be the equivallent in Pelle C?

Thanks for having read me.

Emmanuel

Garvan

Hi:

Open the new tool set-up box, click on the “?” and then on the “Arguments” edit box to get a list of allowed syntax. You are looking for something like $(FileName)

Have fun

Garvan

Emmanuel Delahaye

Quote from: "Garvan"
Open the new tool set-up box, click on the "?" and then on the "Arguments" edit box to get a list of allowed syntax. You are looking for something like $(FileName)
Ah, The Contextual Help... Yes, of course... Well done.

Actually, it's
$(FileName)$(FileExt)
Thanks a lot,

Emmanuel