diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-10 16:55:03 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-18 00:44:49 -0700 |
commit | 8becbf3c542ecaf2df29ea80cf178921fbc67e82 (patch) | |
tree | a42da88d59a6b0ed5e983561c966c78c8aa3fec8 | |
parent | 94a60e2b1bb273f5c98fc3b71ebb1de4f0086525 (diff) | |
download | mu-8becbf3c542ecaf2df29ea80cf178921fbc67e82.tar.gz |
mu.subx: all parsing tests passing
-rw-r--r-- | apps/mu.subx | 2 | ||||
-rw-r--r-- | subx.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/mu.subx b/apps/mu.subx index 778c3e79..c801e329 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -4642,7 +4642,7 @@ test-is-identifier-Z: 5d/pop-to-ebp c3/return -test-is-identifier-@: +test-is-identifier-at: # character before 'A' is invalid # . prologue 55/push-ebp diff --git a/subx.vim b/subx.vim index f63a13c9..6c6d6acc 100644 --- a/subx.vim +++ b/subx.vim @@ -38,7 +38,7 @@ set cpo&vim setlocal formatoptions-=t " allow long lines setlocal formatoptions+=c " but comments should still wrap -setlocal iskeyword+=-,?,<,>,$ +setlocal iskeyword+=-,?,<,>,$,@ syntax match subxH1Comment /# - .*/ | highlight link subxH1Comment Comment syntax match subxComment /#\( \.\| - \|? \)\@!.*/ | highlight link subxComment Comment |