前日公開したsnippetsEmuをTextMate的に補完せよ(Ruby版)のトリガー名をまとめてみました:





































CategoryTrigger NameExpansionMemo
Declarationsrb

#!/usr/bin/env ruby -wKU

 req

require ":1"

 app

if __FILE__ == $PROGRAM_NAME
  :1
end
:2

 usai

if ARGV.:1
  abort "Usage: #{$PROGRAM_NAME} :2"
end
:3

 usau

unless ARGV.:1
  abort "Usage: #{$PROGRAM_NAME} :2"
end
:3

 end

__END__

 while

while :1
  :2
end
:3

 until

until :1
  :2
end
:3

Declarations/Classes and Modulescla

class :1
  :2
end
:3

 clai

class :1
  def initialize(:2)
    :3
  end

end
:4

 clas

 claS

 claB

 claD

 cla-

 cla<

 mod

 modf

 modC

Declarations/Methodsr

attr_reader ::1
:2

 w

attr_writer ::1
:2

 rw

attr_accessor ::1
:2

疲れた、後で追加する。
追記:面倒くさいので、こっちとうぞ。