On Fri, Nov 14, 2008 at 03:08:47PM -0800, Eluze wrote:
>
>
> strk-2 wrote:
> >
> > I've been told about the point & click
> > feature so I had a try.
> > Evince wasn't so helpful in telling me what
> > was going wrong so I tried xpdf, as suggested
> > by the manual.
> >
> >
> you can use it from other pdf readers (like acrobat), too.
> the german lilypond forum Deutsches Lilypond Forum has discussed a solution,
> see yourself: http://www.lilypondforum.de/index.php?topic=88.msg415#msg415
> http://www.lilypondforum.de/index.php?topic=88.msg415#msg415
Can't read german.
Anyway, I "fixed" by writing my own lilypond-invoke-editor...
----- 8< ----------------------------------------------------------
#!/bin/sh
echo $@
if [ -z "$1" ]; then
echo "Usage: $0 <file>:<line>:<char>:<column>" >&2
exit 1
fi
file=`echo $1 | cut -d: -f1`
line=`echo $1 | cut -d: -f2`
char=`echo $1 | cut -d: -f3`
col=`echo $1 | cut -d: -f4`
vi +$line $file
----- 8< ----------------------------------------------------------
--strk;
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user