Posts tagged: textmate

Textmate – where to find help

Textmate – where to find help.

Start with the Textmate Wiki

Regex and Multi-line mode

Good explanation of regexes and multi-line mode at Switching to multi-line mode using Textmate Regex

  • Typical: /some.+?stuff/s
  • Ruby: /some.+?stuff/m
  • Textmate (?m:<script.*?<\/script>)

Textmate Commands

A very well done Textmate command cheat sheet. (Local copy)

git commands – Specifying a default editor

To specify a default editor for git commands (that require one) In ~/.gitconfig

[core]
  editor = "vi"

To specify Texmate

[core]
  editor = "mate -w"

WordPress Themes