Hello. The patch below enables syntax highlight on GAS directives like .ABORT, .cfi_sections or .p2align.
Signed-off-by: Masanori Ogino<[email protected]> diff -r 4ffb2eaeef2a -r 086aa166a2c1 runtime/syntax/asm.vim --- a/runtime/syntax/asm.vim Fri Jan 31 14:54:04 2014 +0100 +++ b/runtime/syntax/asm.vim Sat Feb 01 14:42:03 2014 +0900 @@ -93,7 +93,7 @@ syn match asmMacro "\.macro" syn match asmMacro "\.endm" -syn match asmDirective "\.[a-z][a-z]\+" +syn match asmDirective "\.[A-Za-z][0-9A-Za-z_]\+" syn case match -- Masanori Ogino <[email protected]> http://twitter.com/omasanori http://gplus.to/omasanori -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
