From 207ad4925fd33cfdd820383268abd096c1188247 Mon Sep 17 00:00:00 2001 From: Pavel Lutskov Date: Thu, 6 Feb 2020 10:52:53 +0100 Subject: [PATCH] fixed commenter missing comma bug --- plugin/comment.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/comment.vim b/plugin/comment.vim index 3f2246e..de78b60 100644 --- a/plugin/comment.vim +++ b/plugin/comment.vim @@ -17,7 +17,7 @@ let s:comment_map = { \ 'vue': '\/\/', \ 'cmake': '#', \ 'scheme': ';;', - \ 'yaml': '#' + \ 'yaml': '#', \ 'haskell': '--' \ }