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-05 21:11:40 -07:00
parent 09e8f41640
commit 2ebf34d9ce

View File

@@ -104,7 +104,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility
|| ch == '=' || ch == '='
|| ch == '/' || ch == '/'
|| ch == '%' || ch == '%'
|| ch == ','; || ch == ','
|| ch == ';'
|| ch == '('
|| ch == ')';
} }
} }
} }