We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ef368c commit e73d5bcCopy full SHA for e73d5bc
autoload/clang_format.vim
@@ -50,7 +50,7 @@ function! s:create_keyvals(key, val) abort
50
elseif type(a:val) == s:list_t
51
return a:key . ': [' . join(a:val,',') . ']'
52
else
53
- return a:key . ': ''' . a:val . ''''
+ return a:key . ': ''' . escape(a:val, '''') . ''''
54
endif
55
endfunction
56
0 commit comments