TextMateコマンドめも

ヘルプからの抜粋。覚え書き
なるほど、コメントは(⌘/) ね

Build (⌘B) ― build the current source/project. Normally that means compile it.
Run (⌘R) ― run the current source (script) or product from building a project.
Documentation for Word (⌃H) ― lookup the current word (or “unit”) in the documentation (often online).
Validate Syntax (⌃⇧V) ― run the syntax through whatever form of syntax checker exist for the current document type. Generally show errors as a tool tip, but for more complex validation, HTML output is sometimes used.
Wrap in «Something» (⌃⇧W) ― wrap the selection in what makes sense for the current document type, e.g. open/close tags in HTML, begin/end environment in LaTeX.
Convert to «Something» (⌃⇧H) ― convert the document into something which makes sense, e.g. for HTML run it through tidy, for Markdown convert it to HTML, for an XML property list convert it to the more readable ASCII version, etc. Generally this is done in-place, overwriting the current document.
Continue «Something» (⌅) ― continue the current construct on the next line e.g. a line comment, list item or similar.
Preview Document (⌃⌥⌘P) ― by default this opens the Web Preview, but it has been overloaded for some markup languages for a preview more suited for that language (i.e. doing the HTML conversion and setting up a basic style sheet before showing it).
Insert Close Element (⌥⌘.) ― by default this inserts the appropriate closing tag (HTML) but is overloaded in some contexts to insert whatever constitutes a close element (e.g. \end{environment} in LaTeX).
Comment Toggle (⌘/) ― toggle comment characters around the current line or selection.