Add bool to C string snippet

This commit is contained in:
Kenneth Benzie 2018-03-14 17:39:31 +00:00
parent f4915efffd
commit 287e52fb2a

View File

@ -173,3 +173,7 @@ endsnippet
snippet debug "Debug fprintf"
fprintf(stderr, "%s: %d: %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__);
endsnippet
snippet bs "bool string"
${1:value} ? "true" : "false"
endsnippet