Page 1 of 1

Building FiveLinux applications from "gedit"

Posted: Thu Aug 02, 2007 9:47 am
by Antonio Linares
In gedit, go to "Edit", "Preferences". Then select "plugins" and check
"External tools".

Then go to "Tools", "External tools..." and add a new tool:

name it: "FiveLinux"
description: "FiveLinux"
shortcut key: (press) F5
Command(s):
#!/bin/sh
name=$GEDIT_CURRENT_DOCUMENT_NAME;
file=${name%.*};
./build.sh $file;

input: current document
output: display in bottom pane

That's all :-)

Posted: Thu Aug 02, 2007 9:55 am
by Antonio Linares
Image