diff --git a/syntax/java-bytecode.vim b/syntax/java-bytecode.vim index 1e30fc5..3a3e9f5 100644 --- a/syntax/java-bytecode.vim +++ b/syntax/java-bytecode.vim @@ -441,6 +441,7 @@ syn keyword bcJavaKeyword transient strictfp serializable synchronized static fi syn match bcJavaKeyword /{}/ syn match bcComment "//.*$" +syn match jasminComment "^\s*;.*$" syn match bcMetaTable /^\s*\[.*$/ contained nextgroup=bcMetaTable skipnl syn match bcMetaLines /^\s*Line numbers:\s*$/ nextgroup=bcMetaTable skipnl syn match bcMetaLocals /^\s*Local variable table:\s*$/ nextgroup=bcMetaTable skipnl @@ -495,6 +496,7 @@ if version >= 508 || !exists("did_bc_syn_inits") HiLink bcString String HiLink bcLiteral Constant HiLink bcComment Comment + HiLink jasminComment Comment HiLink bcMetaTable Comment HiLink bcMetaLines Comment HiLink bcMetaLocals Comment