The latest version (rev2214) breaks the open_with.
Line 884:
The following 4 lines:
if " " in path:
vtuple = arg + ' "%s"' % path
else:
vtuple = arg + " " + path
have been replaced by:
vtuple = arg + " " + path
This breaks code that handled spaces within path and filenames.
Line 890:
The function call has not been changed from:
subprocess.Popen(vtuple, shell=True)
to:
subprocess.Popen(vtuple, shell=False)
or whatever conditional code you meant by the statement:
"Try calling it with shell=False if (and only if) data argument is
tuple."
This prevents the Vim program from launching.
TL
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/leo-editor?hl=en
-~----------~----~----~----~------~----~------~--~---