Add coma at the end of lambda snippets

This commit is contained in:
Gueunet Charles 2016-05-15 22:52:35 +02:00
parent ff5d341439
commit 6bf0288d5d

View File

@ -146,9 +146,9 @@ snippet itera
## Lambdas
# lamda (one line)
snippet ld
[${1}](${2}){${3}}
[${1}](${2}){${3}};
# lambda (multi-line)
snippet lld
[${1}](${2}){
${3}
}
};