dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

asm.vim (325B)


      1 " Redefine asm comment highlighting, want <bar> to be interpreted as binop
      2 syn clear asmComment
      3 syn region asmComment		start="/\*" end="\*/" contains=asmTodo
      4 syn region asmComment		start="//" end="$" keepend contains=asmTodo
      5 syn match asmInclude "#include"
      6 syn region asmString start='"' end='"'
      7 hi def link asmString String