Hello All:
I am currently using Ultra Edit on a PC at work and Textmate on my MacBook for when I am not in the office.
I want to convert to using only my MacBook however, the one progg that is holding me back is Ultra Edit. I want to be able to convert all my project files over to TextMates project files.
Please tell me there is a way I can accomplish this,
All the best,
Paul
pmsquillace wrote:
I want to convert to using only my MacBook however, the one progg that is holding me back is Ultra Edit. I want to be able to convert all my project files over to TextMates project files.
Please tell me there is a way I can accomplish this,
Your best bet is posting some example of what an UltraEdit project file looks like to this list (assuming it's some plain-text format? xml? if it's a binary blob you're likely out of luck, unless Ultra Edit is scriptable).
-Jacob
it shouldn't be so hard to create textmate projectors, you have just to drag the folder into drawer. and you have to do this only when you need an older one.
On Jan 30, 2008 1:28 AM, Jacob Rus jacobolus@gmail.com wrote:
pmsquillace wrote:
I want to convert to using only my MacBook however, the one progg that
is
holding me back is Ultra Edit. I want to be able to convert all my
project
files over to TextMates project files.
Please tell me there is a way I can accomplish this,
Your best bet is posting some example of what an UltraEdit project file looks like to this list (assuming it's some plain-text format? xml? if it's a binary blob you're likely out of luck, unless Ultra Edit is scriptable).
-Jacob
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On Jan 29, 2008, at 7:14 PM, Baluta Cristian wrote:
it shouldn't be so hard to create textmate projectors, you have just to drag the folder into drawer. and you have to do this only when you need an older one.
On Jan 30, 2008 1:28 AM, Jacob Rus jacobolus@gmail.com wrote: pmsquillace wrote:
I want to convert to using only my MacBook however, the one progg
that is
holding me back is Ultra Edit. I want to be able to convert all my
project
files over to TextMates project files.
Please tell me there is a way I can accomplish this,
Your best bet is posting some example of what an UltraEdit project file looks like to this list (assuming it's some plain-text format? xml? if it's a binary blob you're likely out of luck, unless Ultra Edit is scriptable).
-Jacob
I think he means that ultraedit project files include files that aren't necessarily in the same file space or hierarchy. He's looking for a way to automate this as he moves over. I agree that if he uses a decent project hierarchy, this should be any more difficult than dragging the project root into the drawer and save the project.
My suggestion is, if possible, put all your projects in a project directory, copy them over to the mac and toss each into a drawer like the parent said. Barring a decent project directory layout, try posting the contents of a UE project file and hopefully someone with scripting experience can paste a converter.
-D
Thanks Jacob,
Yeah, I have edited before. It is just an xml file saved as a .prj file. Can I just go in and change all the paths and save it however textmate saves it?
thanks for you help,
Jacob Rus-4 wrote:
pmsquillace wrote:
I want to convert to using only my MacBook however, the one progg that is holding me back is Ultra Edit. I want to be able to convert all my project files over to TextMates project files.
Please tell me there is a way I can accomplish this,
Your best bet is posting some example of what an UltraEdit project file looks like to this list (assuming it's some plain-text format? xml? if it's a binary blob you're likely out of luck, unless Ultra Edit is scriptable).
-Jacob
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On Jan 29, 2008, at 7:55 PM, pmsquillace wrote:
Thanks Jacob,
Yeah, I have edited before. It is just an xml file saved as a .prj file. Can I just go in and change all the paths and save it however textmate saves it?
thanks for you help,
I'm not sure what the UE project file looks like but this is a project file for textmate. Specifically the <dict></dict> blocks:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd "> <plist version="1.0"> <dict> <key>documents</key> <array> <dict> <key>name</key> <string>TestProject</string> <key>regexFolderFilter</key> <string>!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*. (framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string> <key>sourceDirectory</key> <string>Projects/TestProject</string> </dict> <dict> <key>name</key> <string>Templates</string> <key>regexFolderFilter</key> <string>!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*. (framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string> <key>selected</key> <true/> <key>sourceDirectory</key> <string>Templates</string> </dict> </array> <key>fileHierarchyDrawerWidth</key> <integer>302</integer> <key>metaData</key> <dict/> <key>showFileHierarchyDrawer</key> <true/> <key>windowFrame</key> <string>{{45, 542}, {857, 236}}</string> </dict> </plist>
OK, I will figure it out from that example.
thanks so much for your help with this.
Derek Belrose-2 wrote:
On Jan 29, 2008, at 7:55 PM, pmsquillace wrote:
Thanks Jacob,
Yeah, I have edited before. It is just an xml file saved as a .prj file. Can I just go in and change all the paths and save it however textmate saves it?
thanks for you help,
I'm not sure what the UE project file looks like but this is a project file for textmate. Specifically the <dict></dict> blocks:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd ">
<plist version="1.0"> <dict> <key>documents</key> <array> <dict> <key>name</key> <string>TestProject</string> <key>regexFolderFilter</key> <string>!.*/(\.[^/]*|CVS|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\. (framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string> <key>sourceDirectory</key> <string>Projects/TestProject</string> </dict> <dict> <key>name</key> <string>Templates</string> <key>regexFolderFilter</key> <string>!.*/(\.[^/]*|CVS|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\. (framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string> <key>selected</key> <true/> <key>sourceDirectory</key> <string>Templates</string> </dict> </array> <key>fileHierarchyDrawerWidth</key> <integer>302</integer> <key>metaData</key> <dict/> <key>showFileHierarchyDrawer</key> <true/> <key>windowFrame</key> <string>{{45, 542}, {857, 236}}</string> </dict> </plist>
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On 30/01/2008, pmsquillace pmsquillace@gmail.com wrote:
OK, I will figure it out from that example.
thanks so much for your help with this.
Isn't that more work that it is worth? Surely it is easier just to recreate the projects from the file hierarchy directly in Textmate?
Yeah I was thinking that but I have hundreds of projects. If this takes any more time I just might as well go that route.
I am so glad I found this mailing list because for the longest time I thought textmate did not have any support. :-D
Thanks for your advice,
Paul
Sven Axelsson-3 wrote:
On 30/01/2008, pmsquillace pmsquillace@gmail.com wrote:
OK, I will figure it out from that example.
thanks so much for your help with this.
Isn't that more work that it is worth? Surely it is easier just to recreate the projects from the file hierarchy directly in Textmate?
-- Sven Axelsson ++++++++++[>++++++++++>+++++++++++>++++++++++>++++++
++++<<<<<-]>++++.+.++++.>+++++.>+.<<-.>>+.>++++.<<.
+++.>-.<<++.>>----.<++.>>>++++++.<<<<.>>++++.<----.
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
I by no means meant that that was the way to go. He did ask if it there was a way to convert project files.
I believe that if he has a decent project layout, it would be easier that he create the projects as he needs to work on them by dragging the project directories into the drawer and saving as a new project. But if he wants to do it all at once, a quick script that takes 20 minutes or so might actually be quicker than the manual way.
-Derek On Jan 30, 2008, at 12:09 PM, pmsquillace wrote:
Yeah I was thinking that but I have hundreds of projects. If this takes any more time I just might as well go that route.
I am so glad I found this mailing list because for the longest time I thought textmate did not have any support. :-D
Thanks for your advice,
Paul
Sven Axelsson-3 wrote:
On 30/01/2008, pmsquillace pmsquillace@gmail.com wrote:
OK, I will figure it out from that example.
thanks so much for your help with this.
Isn't that more work that it is worth? Surely it is easier just to recreate the projects from the file hierarchy directly in Textmate?
-- Sven Axelsson ++++++++++[>++++++++++>+++++++++++>++++++++++>++++++
++++<<<<<-]>++++.+.++++.>+++++.>+.<<-.>>+.>++++.<<.
+++.>-.<<++.>>----.<++.>>>++++++.<<<<.>>++++.<----.
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
-- View this message in context: http://www.nabble.com/Want-to-go-all-Mac-but.....-tp15167242p15186026.html Sent from the textmate users mailing list archive at Nabble.com.
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate