removed group-name prefix on trigger keys

This commit is contained in:
Jim Myhrberg 2011-11-03 20:22:33 +00:00
parent 7b383f8c22
commit 3aea27042b
71 changed files with 71 additions and 71 deletions

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h1>...</h1> #name : <h1>...</h1>
# key: headerh1 # key: h1
# -- # --
<h1>$1</h1> <h1>$1</h1>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h2>...</h2> #name : <h2>...</h2>
# key: headerh2 # key: h2
# -- # --
<h2>$1</h2> <h2>$1</h2>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h3>...</h3> #name : <h3>...</h3>
# key: headerh3 # key: h3
# -- # --
<h3>$1</h3> <h3>$1</h3>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h4>...</h4> #name : <h4>...</h4>
# key: headerh4 # key: h4
# -- # --
<h4>$1</h4> <h4>$1</h4>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h5>...</h5> #name : <h5>...</h5>
# key: headerh5 # key: h5
# -- # --
<h5>$1</h5> <h5>$1</h5>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <h6>...</h6> #name : <h6>...</h6>
# key: headerh6 # key: h6
# -- # --
<h6>$1</h6> <h6>$1</h6>

View File

@ -1,5 +1,5 @@
#contributor : Rodrigo Setti <rodrigosetti@gmail.com> #contributor : Rodrigo Setti <rodrigosetti@gmail.com>
#name : <dd> ... </dd> #name : <dd> ... </dd>
# key: listdd # key: dd
# -- # --
<dd>$1</dd> <dd>$1</dd>

View File

@ -1,6 +1,6 @@
#contributor : Rodrigo Setti <rodrigosetti@gmail.com> #contributor : Rodrigo Setti <rodrigosetti@gmail.com>
#name : <dl> ... </dl> #name : <dl> ... </dl>
# key: listdl # key: dl
# -- # --
<dl> <dl>
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Rodrigo Setti <rodrigosetti@gmail.com> #contributor : Rodrigo Setti <rodrigosetti@gmail.com>
#name : <dl> ... </dl> #name : <dl> ... </dl>
# key: listdl # key: dl
# -- # --
<dl id="$1"> <dl id="$1">
$0 $0

View File

@ -1,5 +1,5 @@
#contributor : Rodrigo Setti <rodrigosetti@gmail.com> #contributor : Rodrigo Setti <rodrigosetti@gmail.com>
#name : <dt> ... </dt> #name : <dt> ... </dt>
# key: listdt # key: dt
# -- # --
<dt>$1</dt> <dt>$1</dt>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <li>...</li> #name : <li>...</li>
# key: listli # key: li
# -- # --
<li>$1</li> <li>$1</li>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <li class="...">...</li> #name : <li class="...">...</li>
# key: listli # key: li
# -- # --
<li class="$1">$2</li> <li class="$1">$2</li>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ol>...</ol> #name : <ol>...</ol>
# key: listol # key: ol
# -- # --
<ol> <ol>
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ol class="...">...</ol> #name : <ol class="...">...</ol>
# key: listol # key: ol
# -- # --
<ol class="$1"> <ol class="$1">
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ol id="...">...</ol> #name : <ol id="...">...</ol>
# key: listol # key: ol
# -- # --
<ol id="$1"> <ol id="$1">
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ul>...</ul> #name : <ul>...</ul>
# key: listul # key: ul
# -- # --
<ul> <ul>
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ul class="...">...</ul> #name : <ul class="...">...</ul>
# key: listul # key: ul
# -- # --
<ul class="$1"> <ul class="$1">
$0 $0

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <ul id="...">...</ul> #name : <ul id="...">...</ul>
# key: listul # key: ul
# -- # --
<ul id="$1"> <ul id="$1">
$0 $0

View File

@ -1,4 +1,4 @@
#name : Doctype HTML 4.01 Strict #name : Doctype HTML 4.01 Strict
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

View File

@ -1,4 +1,4 @@
#name : DocType XHTML 1.0 frameset #name : DocType XHTML 1.0 frameset
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

View File

@ -1,4 +1,4 @@
#name : DocType XHTML 1.1 #name : DocType XHTML 1.1
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

View File

@ -1,4 +1,4 @@
#name : DocType XHTML 1.0 Strict #name : DocType XHTML 1.0 Strict
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

View File

@ -1,4 +1,4 @@
#name : DocType XHTML 1.0 Transitional #name : DocType XHTML 1.0 Transitional
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <meta name="..." content="..." /> #name : <meta name="..." content="..." />
# key: metameta # key: meta
# -- # --
<meta name="${1:generator}" content="${2:content}" /> <meta name="${1:generator}" content="${2:content}" />

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <meta http-equiv="..." content="..." /> #name : <meta http-equiv="..." content="..." />
# key: metameta # key: meta
# -- # --
<meta http-equiv="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" /> <meta http-equiv="${1:Content-Type}" content="${2:text/html; charset=UTF-8}" />

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <table ...>...</table> #name : <table ...>...</table>
# key: tabletable # key: table
# -- # --
<table width="$1" cellspacing="$2" cellpadding="$3" border="$4"> <table width="$1" cellspacing="$2" cellpadding="$3" border="$4">
$0 $0

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <td>...</td> #name : <td>...</td>
# key: tabletd # key: td
# -- # --
<td$1>$2</td> <td$1>$2</td>

View File

@ -1,5 +1,5 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <th>...</th> #name : <th>...</th>
# key: tableth # key: th
# -- # --
<th$1>$2</th> <th$1>$2</th>

View File

@ -1,6 +1,6 @@
#contributor : Jimmy Wu <frozenthrone88@gmail.com> #contributor : Jimmy Wu <frozenthrone88@gmail.com>
#name : <tr>...</tr> #name : <tr>...</tr>
# key: tabletr # key: tr
# -- # --
<tr> <tr>
$0 $0

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h1>...</h1> #name : <h1>...</h1>
# key: headerh1 # key: h1
# -- # --
<h1>$1</h1> <h1>$1</h1>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h2>...</h2> #name : <h2>...</h2>
# key: headerh2 # key: h2
# -- # --
<h2>$1</h2> <h2>$1</h2>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h3>...</h3> #name : <h3>...</h3>
# key: headerh3 # key: h3
# -- # --
<h3>$1</h3> <h3>$1</h3>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h4>...</h4> #name : <h4>...</h4>
# key: headerh4 # key: h4
# -- # --
<h4>$1</h4> <h4>$1</h4>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h5>...</h5> #name : <h5>...</h5>
# key: headerh5 # key: h5
# -- # --
<h5>$1</h5> <h5>$1</h5>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <h6>...</h6> #name : <h6>...</h6>
# key: headerh6 # key: h6
# -- # --
<h6>$1</h6> <h6>$1</h6>

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : DocType XHTML 1.1 #name : DocType XHTML 1.1
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : DocType XHTML 1.0 Strict #name : DocType XHTML 1.0 Strict
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : DocType XHTML 1.0 Transitional #name : DocType XHTML 1.0 Transitional
# key: metadoctype # key: doctype
# -- # --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

View File

@ -1,5 +1,5 @@
#contributor : Anders Bach Nielsen <abachn@abachn.net> #contributor : Anders Bach Nielsen <abachn@abachn.net>
#name : <meta name="..." content="..." /> #name : <meta name="..." content="..." />
# key: metameta # key: meta
# -- # --
<meta name="${1:generator}" content="${2:content}" /> <meta name="${1:generator}" content="${2:content}" />

View File

@ -1,4 +1,4 @@
#name : all? { |...| ... } #name : all? { |...| ... }
# key: collectionsall # key: all
# -- # --
all? { |${e}| $0 } all? { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : any? { |...| ... } #name : any? { |...| ... }
# key: collectionsany # key: any
# -- # --
any? { |${e}| $0 } any? { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : classify { |...| ... } #name : classify { |...| ... }
# key: collectionsclassify # key: classify
# -- # --
classify { |${e}| $0 } classify { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : collect { |...| ... } #name : collect { |...| ... }
# key: collectionscollect # key: collect
# -- # --
collect { |${e}| $0 } collect { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : delete_if { |...| ... } #name : delete_if { |...| ... }
# key: collectionsdeli # key: deli
# -- # --
delete_if { |${e} $0 } delete_if { |${e} $0 }

View File

@ -1,4 +1,4 @@
#name : detect { |...| ... } #name : detect { |...| ... }
# key: collectionsdet # key: det
# -- # --
detect { |${e}| $0 } detect { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : each { |...| ... } #name : each { |...| ... }
# key: collectionsea # key: ea
# -- # --
each { |${e}| $0 } each { |${e}| $0 }

View File

@ -1,4 +1,4 @@
#name : each_cons(...) { |...| ... } #name : each_cons(...) { |...| ... }
# key: collectionseac # key: eac
# -- # --
each_cons(${1:2}) { |${group}| $0 } each_cons(${1:2}) { |${group}| $0 }

View File

@ -1,4 +1,4 @@
#name : each_index { |i| ... } #name : each_index { |i| ... }
# key: collectionseai # key: eai
# -- # --
each_index { |${i}| $0 } each_index { |${i}| $0 }

View File

@ -1,4 +1,4 @@
#name : each_value { |val| ... } #name : each_value { |val| ... }
# key: collectionseav # key: eav
# -- # --
each_value { |${val}| $0 } each_value { |${val}| $0 }

View File

@ -1,4 +1,4 @@
#name : each_with_index { |e, i| ... } #name : each_with_index { |e, i| ... }
# key: collectionseawi # key: eawi
# -- # --
each_with_index { |${e}, ${i}| $0 } each_with_index { |${e}, ${i}| $0 }

View File

@ -1,4 +1,4 @@
#name : inject(...) { |...| ... } #name : inject(...) { |...| ... }
# key: collectionsinject # key: inject
# -- # --
inject(${1:0}) { |${2:injection}, ${3:element}| $0 } inject(${1:0}) { |${2:injection}, ${3:element}| $0 }

View File

@ -1,4 +1,4 @@
#name : reject { |...| ... } #name : reject { |...| ... }
# key: collectionsreject # key: reject
# -- # --
reject { |${1:element}| $0 } reject { |${1:element}| $0 }

View File

@ -1,4 +1,4 @@
#name : select { |...| ... } #name : select { |...| ... }
# key: collectionsselect # key: select
# -- # --
select { |${1:element}| $0 } select { |${1:element}| $0 }

View File

@ -1,5 +1,5 @@
#name : include Comparable; def <=> ... end #name : include Comparable; def <=> ... end
# key: definitionsComp # key: Comp
# -- # --
include Comparable include Comparable

View File

@ -1,4 +1,4 @@
#name : alias_method new, old #name : alias_method new, old
# key: definitionsam # key: am
# -- # --
alias_method :${new_name}, :${old_name} alias_method :${new_name}, :${old_name}

View File

@ -1,5 +1,5 @@
#name : class << self ... end #name : class << self ... end
# key: definitionscla # key: cla
# -- # --
class << ${self} class << ${self}
$0 $0

View File

@ -1,6 +1,6 @@
#name : class ... end #name : class ... end
#contributor : hitesh <hitesh.jasani@gmail.com> #contributor : hitesh <hitesh.jasani@gmail.com>
# key: definitionscls # key: cls
# -- # --
class ${1:`(let ((fn (capitalize (file-name-nondirectory class ${1:`(let ((fn (capitalize (file-name-nondirectory
(file-name-sans-extension (file-name-sans-extension

View File

@ -1,5 +1,5 @@
#name : def method_missing ... end #name : def method_missing ... end
# key: definitionsmm # key: mm
# -- # --
def method_missing(method, *args) def method_missing(method, *args)
$0 $0

View File

@ -1,4 +1,4 @@
#name : attr_reader ... #name : attr_reader ...
# key: definitionsr # key: r
# -- # --
attr_reader : attr_reader :

View File

@ -1,4 +1,4 @@
#name : attr_accessor ... #name : attr_accessor ...
# key: definitionsrw # key: rw
# -- # --
attr_accessor : attr_accessor :

View File

@ -1,4 +1,4 @@
#name : attr_writer ... #name : attr_writer ...
# key: definitionsw # key: w
# -- # --
attr_writer : attr_writer :

View File

@ -1,4 +1,4 @@
#name : # => #name : # =>
# key: general# # key: #
# -- # --
# => # =>

View File

@ -1,5 +1,5 @@
#name : =begin rdoc ... =end #name : =begin rdoc ... =end
# key: general=b # key: =b
# -- # --
=begin rdoc =begin rdoc
$0 $0

View File

@ -1,5 +1,5 @@
#name : if __FILE__ == $PROGRAM_NAME ... end #name : if __FILE__ == $PROGRAM_NAME ... end
# key: generalapp # key: app
# -- # --
if __FILE__ == $PROGRAM_NAME if __FILE__ == $PROGRAM_NAME
$0 $0

View File

@ -1,5 +1,5 @@
#name : Benchmark.bmbm(...) do ... end #name : Benchmark.bmbm(...) do ... end
# key: generalbm # key: bm
# -- # --
Benchmark.bmbm(${1:10}) do |x| Benchmark.bmbm(${1:10}) do |x|
$0 $0

View File

@ -1,5 +1,5 @@
#name : case ... end #name : case ... end
# key: generalcase # key: case
# -- # --
case ${1:object} case ${1:object}
when ${2:condition} when ${2:condition}

View File

@ -1,4 +1,4 @@
#name : deep_copy(...) #name : deep_copy(...)
# key: generaldee # key: dee
# -- # --
Marshal.load(Marshal.dump($0)) Marshal.load(Marshal.dump($0))

View File

@ -1,4 +1,4 @@
#name : /usr/bin/ruby -wKU #name : /usr/bin/ruby -wKU
# key: generalrb # key: rb
# -- # --
#!/usr/bin/ruby -wKU #!/usr/bin/ruby -wKU

View File

@ -1,4 +1,4 @@
#name : require "..." #name : require "..."
# key: generalreq # key: req
# -- # --
require "$0" require "$0"

View File

@ -1,4 +1,4 @@
#name : require File.join(File.dirname(__FILE__), ...) #name : require File.join(File.dirname(__FILE__), ...)
# key: generalrreq # key: rreq
# -- # --
require File.join(File.dirname(__FILE__), $0) require File.join(File.dirname(__FILE__), $0)

View File

@ -1,4 +1,4 @@
#name : :yields: arguments (rdoc) #name : :yields: arguments (rdoc)
# key: generaly # key: y
# -- # --
:yields: $0 :yields: $0