Apply Leandro Lucarella <llucax@gmail.com>'s patches for VIM highlighting
and not setting execute bit on protoc outputs.

diff --git a/editors/proto.vim b/editors/proto.vim
index ea01048..19c0d4c 100644
--- a/editors/proto.vim
+++ b/editors/proto.vim
@@ -23,6 +23,9 @@
 " augroup filetype
 "   au! BufRead,BufNewFile *.proto setfiletype proto
 " augroup end
+"
+" Or just create a new file called ~/.vim/ftdetect/proto.vim with the
+" previous lines on it.
 
 if version < 600
   syntax clear
@@ -32,6 +35,9 @@
 
 syn case match
 
+syn keyword pbTodo       contained TODO FIXME XXX
+syn cluster pbCommentGrp contains=pbTodo
+
 syn keyword pbSyntax     syntax import option
 syn keyword pbStructure  package message group
 syn keyword pbRepeat     optional required repeated
@@ -50,7 +56,7 @@
 syn match   pbFloat   /\<-\?\d*\(\.\d*\)\?/
 " TODO: .proto also supports C-style block comments;
 " see /usr/share/vim/vim70/syntax/c.vim for how it's done.
-syn match   pbComment /\/\/.*$/
+syn region  pbComment start="//" skip="\\$" end="$" keepend contains=@pbCommentGrp
 syn region  pbString  start=/"/ skip=/\\"/ end=/"/
 syn region  pbString  start=/'/ skip=/\\'/ end=/'/
 
@@ -62,6 +68,8 @@
     command -nargs=+ HiLink hi def link <args>
   endif
 
+  HiLink pbTodo         Todo
+
   HiLink pbSyntax       Include
   HiLink pbStructure    Structure
   HiLink pbRepeat       Repeat