mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
runtime(asm): add byte directives to syntax script
closes: #16523 Signed-off-by: Nir Lichtman <nir@lichtman.org> Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
279dd703e1
commit
db23436b92
@@ -3,8 +3,8 @@
|
|||||||
" Maintainer: Doug Kearns dougkearns@gmail.com
|
" Maintainer: Doug Kearns dougkearns@gmail.com
|
||||||
" Previous Maintainers: Erik Wognsen <erik.wognsen@gmail.com>
|
" Previous Maintainers: Erik Wognsen <erik.wognsen@gmail.com>
|
||||||
" Kevin Dahlhausen <kdahlhaus@yahoo.com>
|
" Kevin Dahlhausen <kdahlhaus@yahoo.com>
|
||||||
" Contributors: Ori Avtalion, Lakshay Garg
|
" Contributors: Ori Avtalion, Lakshay Garg, Nir Lichtman
|
||||||
" Last Change: 2020 Oct 31
|
" Last Change: 2025 Jan 26
|
||||||
|
|
||||||
" quit when a syntax file was already loaded
|
" quit when a syntax file was already loaded
|
||||||
if exists("b:current_syntax")
|
if exists("b:current_syntax")
|
||||||
@@ -32,6 +32,9 @@ syn match asmType "\.single"
|
|||||||
syn match asmType "\.space"
|
syn match asmType "\.space"
|
||||||
syn match asmType "\.string"
|
syn match asmType "\.string"
|
||||||
syn match asmType "\.word"
|
syn match asmType "\.word"
|
||||||
|
syn match asmType "\.2byte"
|
||||||
|
syn match asmType "\.4byte"
|
||||||
|
syn match asmType "\.8byte"
|
||||||
|
|
||||||
syn match asmIdentifier "[a-z_][a-z0-9_]*"
|
syn match asmIdentifier "[a-z_][a-z0-9_]*"
|
||||||
syn match asmLabel "[a-z_][a-z0-9_]*:"he=e-1
|
syn match asmLabel "[a-z_][a-z0-9_]*:"he=e-1
|
||||||
|
Reference in New Issue
Block a user