refactor(nvim): remove = for valid matches in org tables

This commit is contained in:
Price Hiller 2023-11-22 13:37:26 -06:00
parent 73c118078d
commit 4f541b833d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1,5 +1,5 @@
syn match org_table_sep /\(|\|\(-\|=\)\|+\)/ contained
syn match org_table_sep /\(|\|\-\|+\)/ contained
syn match org_table_header /|.*|/ contained contains=org_table_sep
syn match org_table_header_region /|.*|\_s*|\_s*\(-+\|\-\|=\).*|\_s*$/ contained contains=org_table_header
syn match org_table_header_region /|.*|\_s*|\_s*\(-+\|\-\).*|\_s*$/ contained contains=org_table_header
syn match org_table /|.*|\_s*$/ contained contains=org_table_sep,org_table_header_region
syn match org_table_region /^\s*|.*|\_s*$/ contains=org_table