catch snippet fix, assert snippet improvement.

This commit is contained in:
kiith-sa 2012-11-04 14:03:02 +01:00
parent b83eee6068
commit 75f69ac34f

View File

@ -335,7 +335,7 @@ finally
endsnippet
snippet catch "catch (catch)" b
catch(${1}Exception)
catch(${1}Exception e)
{
${2:/*handle exception*/}
}
@ -421,7 +421,7 @@ endsnippet
# Asserts
snippet ass "assert (ass)" b
assert(${1:false}, ${2:"TODO"});
assert(${1:false}, "${2:TODO}");
endsnippet