If I were using it for a "spawn and forget", I would probably just make a shortcut in the folder like this
Name: Program Target"C:\path\to\program.exe" then geanydoc call: "Program.lnk" %w Which should not spawn a cmd. If you need buffered output as with pydoc, a batch file with a pipe works great: @echo off echo | python -u "C:\python27\Lib\pydoc.py" %1 On Wed, Feb 2, 2011 at 12:33 PM, Chris Sutcliffe <[email protected]> wrote: > On 2 February 2011 10:07, Jonathan Daily wrote: >> Glad to hear! Personally, I got tired of having to append 3000 >> programs to my search path, especially when windows programs installed >> conflicting versions of things like zlib, libxml, etc that I made a >> single ~/bin/ folder that I added to my search path that contains >> (mostly) batch files that link to relevant programs themselves. > > That sounds like a good approach. Do you have a sample batch file I > can see to use as a basis for what I require? Additionally, when I > tested by creating a firefox.bat file, a command prompt popped up when > I made use of Geanydoc, is there a way to suppress the command prompt? > > Thank you, > > Chris > > -- > Chris Sutcliffe > http://emergedesktop.org > http://www.google.com/profiles/ir0nh34d > _______________________________________________ > Geany mailing list > [email protected] > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > -- =============================================== Jon Daily Technician =============================================== #!/usr/bin/env outside # It's great, trust me. _______________________________________________ Geany mailing list [email protected] http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
