From e2c38e3eb396622906d00a6e67b88df047571f95 Mon Sep 17 00:00:00 2001 From: Mohsin-Ul-Islam Date: Sun, 8 Oct 2023 14:09:55 +0300 Subject: [PATCH] fix: httpResultPath match --- syntax/httpResult.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/httpResult.vim b/syntax/httpResult.vim index e4a8716e..7b644c39 100644 --- a/syntax/httpResult.vim +++ b/syntax/httpResult.vim @@ -2,7 +2,7 @@ if exists("b:current_syntax") | finish | endif syn match httpResultComment "\v^#.*$" syn keyword httpResultTitle GET POST PATCH PUT HEAD DELETE nextgroup=httpResultPath -syn match httpResultPat /.*$/ contained +syn match httpResultPath /.*$/ contained syn match httpResultField /^\(\w\)[^:]\+:/he=e-1 syn match httpResultDateField /^[Dd]ate:/he=e-1 nextgroup=httpResultDate