me again...
one problem solved:
Now Open with... is functioning (not greyed anymore) - it seems like it is very important how the commands.xml file is writen
The code:
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<commands>
<command alias="Emacs" value="C:\Program Files\Emacs\bin\runemacs $f"/>
</commands>
doesn't work because of the space before <commands>
The code:
- Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<commands>
<command alias="Emacs" value="C:\Program Files\Emacs\bin\runemacs $f"/>
</commands>
enables Open with..
but when I run for example Emacs or any other program to open file with I get an error message: An error has ocured while performing the requested operation.
The path to runemacs scrtipt is C:\Program Files\Emacs\bin\ and the code in commands.xml is as written above.
Seems like the "value" is not right. At least for WinXP.
Thanks for help,
Vrho
