Reputation: 267040
I'm using textmate for the first time basically, and I am lost as to what keys map to these funny symbols.
using python bundles, what keys do I press for:
run run with tests run project unit tests
Also, with textmate, do I actually define a project in textmate or do I just work on the files and textmate doesn't create its own .project type file ?
Upvotes: 2
Views: 559
Reputation: 4624
Check out this link for some of the translations to some of the keyboard symbols. This should help you out :)
Also here is a link from the Apple site for an exhaustive list of shortcuts.
(source: osxkeyboardshortcuts.com)
Upvotes: 6
Reputation: 410732
Also, with textmate, do I actually define a project in textmate or do I just work on the files and textmate doesn't create its own .project type file ?
You can do both. You can create a new project in TextMate by going to File -> New Project and add your files manually, or you can drag a folder into TextMate and it will create a project from those files (you can add other files later). Note that the second method will not create a .tmproj
file, though, so if you want to "keep" that project, you'll have to save it (File -> Save Project).
Upvotes: 2