From e37d0a289c71e501ae261b3a305b3a5735d7f51c Mon Sep 17 00:00:00 2001 From: Nicolas Goy Date: Sat, 31 Oct 2015 11:55:06 +0100 Subject: [PATCH] Fix quotes to have the bufname evaluated dynamically --- plugin/defaults.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/defaults.vim b/plugin/defaults.vim index d828f5c..2ba5d94 100644 --- a/plugin/defaults.vim +++ b/plugin/defaults.vim @@ -171,7 +171,7 @@ endif " Typescript if !exists('g:formatdef_tsfmt') - let g:formatdef_tsfmt = '"tsfmt --stdin '.bufname('%').'"' + let g:formatdef_tsfmt = "'tsfmt --stdin '.bufname('%')" endif if !exists('g:formatters_typescript')