From 636546bebc1dc0dcfdffba4428cc956dd0538bb7 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Sun, 29 Jun 2014 19:42:57 -0700 Subject: [PATCH] Fix syntax name b:current_syntax should be set to "snippets", as that's the filetype, not "snippet". --- syntax/snippets.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/snippets.vim b/syntax/snippets.vim index 9420ef6..0d4988d 100644 --- a/syntax/snippets.vim +++ b/syntax/snippets.vim @@ -73,4 +73,4 @@ hi def link snipGlobal Normal hi def link snipClear Statement hi def link snipPriority Statement -let b:current_syntax = "snippet" +let b:current_syntax = "snippets"