From: Jiri Slaby Date: Tue, 8 Nov 2022 07:57:01 +0100 Subject: syntax: avoid multiline lets Patch-mainline: not yet References: bsc#1205034 They are not allowed anymore. Signed-off-by: Jiri Slaby --- syntax/sls.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/syntax/sls.vim b/syntax/sls.vim index 18fc4875..481e8376 100644 --- a/syntax/sls.vim +++ b/syntax/sls.vim @@ -64,8 +64,6 @@ highlight link salt_stateSpecialArgs Special syn keyword salt_stateErrors requires requires_in watches watches_in includes extends containedin=yamlBlockMappingKey highlight link salt_stateErrors Error -let g:NERDCustomDelimiters = { - \ 'sls': { 'left': '#' }, -\ } +let g:NERDCustomDelimiters = { 'sls': { 'left': '#' }, } let b:current_syntax = "sls" -- 2.35.3