Skip to content

Commit

Permalink
Merge pull request #135 from Clement-Jean/patch-1
Browse files Browse the repository at this point in the history
Add few options snippets
  • Loading branch information
zxh0 authored Mar 17, 2022
2 parents 5b2e0cd + bc130ab commit 1335e37
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions snippets/proto3.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,26 @@
"description": "option java_outer_classname",
"body": "option java_outer_classname = \"${1:ClassName}\";"
},
"option java_multiple_files": {
"prefix": "ojmf",
"description": "option java_multiple_files",
"body": "option java_multiple_files = ${1:true};"
},
"option golang_package": {
"prefix": "ogp",
"description": "option go_package",
"body": "option go_package = \"${1}\";"
},
"option cc_enable_arenas": {
"prefix": "ocea",
"description": "option cc_enable_arenas",
"body": "option cc_enable_arenas = ${1:true};"
},
"option objc_class_prefix": {
"prefix": "oocp",
"description": "option objc_class_prefix",
"body": "option objc_class_prefix = \"${1}\";"
},
"option optimize_for SPEED": {
"prefix": "o4s",
"description": "option optimize_for SPEED",
Expand Down

0 comments on commit 1335e37

Please sign in to comment.