Add a few more autocomplete delimeter characters (#138)

Trival change to add a couple new delimeters..auto-merging.
This commit is contained in:
Karl Burtram
2016-11-06 04:12:48 +00:00
parent 09e8f41640
commit 2ebf34d9ce
@@ -104,7 +104,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility
|| ch == '='
|| ch == '/'
|| ch == '%'
|| ch == ',';
|| ch == ','
|| ch == ';'
|| ch == '('
|| ch == ')';
}
}
}