On Mon 23 Apr 2018 at 09:43:01 (+0200), Gianmaria Lari wrote:
> The following frescobaldi snippet call the "more.com" program with the
> parameter "\\readme"
> 
> -*- python;
> from subprocess import call
> call(["more.com", "\\readme"])
> 
> This other one-line snippet pastes, in the frescobaldi editor window at the
> cursor position, the lilypond file name (including path) of the current
> document
> 
> $FILE_NAME
> 
> Now I would like to merge the two worlds:) I would like a snippet that
> calls an external application passing as parameter $FILE_NAME.
> Any suggestion?

import os # likely to have been imported already
call(["more.com", os.environ['FILE_NAME']])

Cheers,
David.

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to