I'll experiment with that. Thanks, Steve.

***********************************************************
On May 28, 2010, at 8:30 AM , Steve Kalkwarf wrote:

Yes, it's easy for one file, and I'll do it that way if necessary. I was rather 
hoping for some function that allowed a multi-file replacement of \r with 
\t[filename]\r.

There is no token for filename in the replace mechanics, but you could write an 
AppleScript to do this:

tell application "BBEdit"
        set all_docs to every text document
        repeat with a_doc in all_docs
                set suffix_string to tab & name of a_doc
                add suffix a_doc suffix suffix_string
        end repeat
end tell

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
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/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "[email protected]" rather than posting to the group.

Reply via email to