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,4 +1,4 @@
#name : all? { |...| ... }
# key: collectionsall
# key: all
# --
all? { |${e}| $0 }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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