Merge pull request #290 from l7ssha/master

[dart-mode] Fix template for async function
This commit is contained in:
Andrea Crotti 2018-09-09 11:15:21 +01:00 committed by GitHub
commit ef6eae61f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
# name: funca
# key: afun
# --
${1:Type} ${2:Name}($3) async {
Future<${1:Type}> ${2:Name}($3) async {
$0
}