From 6d3729592b103fded2e5ace5d997d25513e10064 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sat, 18 Apr 2015 07:44:32 +0100 Subject: [PATCH] vim: don't parse b flags if it also contains f --- vim/ultisnips/all.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/ultisnips/all.snippets b/vim/ultisnips/all.snippets index 0a637f6..1908d71 100644 --- a/vim/ultisnips/all.snippets +++ b/vim/ultisnips/all.snippets @@ -32,7 +32,7 @@ def _parse_comments(s): ctriple.append(indent) rv.append(ctriple) - elif 'b' in flags: + elif 'b' in flags and 'f' not in flags: if len(text) == 1: rv.insert(0, (text,text,text, "")) except StopIteration: -- 2.48.1