proto.vim 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. " Protocol Buffers - Google's data interchange format
  2. " Copyright 2008 Google Inc. All rights reserved.
  3. " https://developers.google.com/protocol-buffers/
  4. "
  5. " Redistribution and use in source and binary forms, with or without
  6. " modification, are permitted provided that the following conditions are
  7. " met:
  8. "
  9. " * Redistributions of source code must retain the above copyright
  10. " notice, this list of conditions and the following disclaimer.
  11. " * Redistributions in binary form must reproduce the above
  12. " copyright notice, this list of conditions and the following disclaimer
  13. " in the documentation and/or other materials provided with the
  14. " distribution.
  15. " * Neither the name of Google Inc. nor the names of its
  16. " contributors may be used to endorse or promote products derived from
  17. " this software without specific prior written permission.
  18. "
  19. " THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. " "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. " LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. " A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. " OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. " SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. " LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. " DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. " THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. " (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. " OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. " This is the Vim syntax file for Google Protocol Buffers as found at
  31. " https://github.com/protocolbuffers/protobuf
  32. " Last update: 2020 Oct 29
  33. " quit when a syntax file was already loaded
  34. if exists("b:current_syntax")
  35. finish
  36. endif
  37. syn case match
  38. syn keyword protoTodo contained TODO FIXME XXX
  39. syn cluster protoCommentGrp contains=protoTodo
  40. syn keyword protoSyntax syntax import option
  41. syn keyword protoStructure package message group oneof
  42. syn keyword protoRepeat optional required repeated
  43. syn keyword protoDefault default
  44. syn keyword protoExtend extend extensions to max reserved
  45. syn keyword protoRPC service rpc returns
  46. syn keyword protoType int32 int64 uint32 uint64 sint32 sint64
  47. syn keyword protoType fixed32 fixed64 sfixed32 sfixed64
  48. syn keyword protoType float double bool string bytes
  49. syn keyword protoTypedef enum
  50. syn keyword protoBool true false
  51. syn match protoInt /-\?\<\d\+\>/
  52. syn match protoInt /\<0[xX]\x+\>/
  53. syn match protoFloat /\<-\?\d*\(\.\d*\)\?/
  54. syn region protoComment start="\/\*" end="\*\/" contains=@pbCommentGrp,@Spell
  55. syn region protoComment start="//" skip="\\$" end="$" keepend contains=@pbCommentGrp,@Spell
  56. syn region protoString start=/"/ skip=/\\./ end=/"/ contains=@Spell
  57. syn region protoString start=/'/ skip=/\\./ end=/'/ contains=@Spell
  58. hi def link protoTodo Todo
  59. hi def link protoSyntax Include
  60. hi def link protoStructure Structure
  61. hi def link protoRepeat Repeat
  62. hi def link protoDefault Keyword
  63. hi def link protoExtend Keyword
  64. hi def link protoRPC Keyword
  65. hi def link protoType Type
  66. hi def link protoTypedef Typedef
  67. hi def link protoBool Boolean
  68. hi def link protoInt Number
  69. hi def link protoFloat Float
  70. hi def link protoComment Comment
  71. hi def link protoString String
  72. let b:current_syntax = "proto"