Fix formatting of C/C++ debug snippet

This commit is contained in:
2019-05-03 11:02:05 +01:00
parent 5f7b05aab0
commit 054507cdff

View File

@@ -163,7 +163,7 @@ int main(${1:int argc, const char* argv[]}) {
endsnippet endsnippet
snippet debug "Debug fprintf" snippet debug "Debug fprintf"
fprintf(stderr, "%s: %d: %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__); fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__);
endsnippet endsnippet
snippet bs "bool string" snippet bs "bool string"