Edward, My fix to the FileActions plugin broke its support for @file-
ref. I also noticed that the plugin does not correctly handle @file
node types with spaces in the file name. I am willing to push the fix
for this into the trunk later today. Otherwise you can do it. Here
are the changes:
Replace:
if not p.isAnyAtFileNode():
return
h = p.headString()
words = h.split()
directive = words[0]
filename = words[1]
if directive[0] != '@' or directive not in file_directives:
return None
with:
h = p.headString()
words = h.split()
directive = words[0]
if directive[0] != '@' or directive not in file_directives:
return None
filename = h.replace(directive + " ", "", 1)
in:
def onIconDoubleClick(tag, keywords):
How do you want to proceed?
Regards,
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
-~----------~----~----~----~------~----~------~--~---