Skip to content

Commit

Permalink
Merge pull request honza#343 from dbarnett/proto
Browse files Browse the repository at this point in the history
Proto: Added snippets for Googles protobufs.
  • Loading branch information
SirVer committed Apr 14, 2014
2 parents 4b9f18c + cf39d41 commit 0370652
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions UltiSnips/proto.snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
priority -50

global !p
from vimsnippets import complete
FIELD_TYPES = [
'double',
'float',
'int32',
'int64',
'uint32',
'uint64',
'sint32',
'sint64',
'fixed32',
'fixed64',
'sfixed32',
'sfixed64',
'bool',
'string',
'bytes']
endglobal

snippet mess "Proto message" b
// ${2:TODO(`whoami`): Describe this message.}
message ${1:Name} {
$0

// Next available id: 1
}
endsnippet

snippet reqf "Required field" b
// ${4:TODO(`whoami`): Describe this field.}
optional ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1}; // Required
endsnippet

snippet optf "Optional field" b
// ${4:TODO(`whoami`): Describe this field.}
optional ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
endsnippet

snippet repf "Repeated field" b
// ${4:TODO(`whoami`): Describe this field.}
repeated ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
endsnippet

snippet enum "Enumeration" b
// ${2:TODO(`whoami`): Describe this enum.}
enum ${1:Name} {
}
endsnippet

0 comments on commit 0370652

Please sign in to comment.