@naturalspringwater as a work-around, you could make a script to call instead of geany
directly, something like this, which kind of does what you want (I think, I'm on Windows ATM):
#!/usr/bin/env bash
set -e
TMPFILE=`mktemp`
trap 'rm -f "$TMPFILE"' EXIT
while read line
do echo "$line" >> "$TMPFILE"
done
geany $@ "$TMPFILE"
—
Reply to this email directly or view it on GitHub.