Respect case of declared variables
I have text case for variables set to "do not change", because none of the other options match my rules exactly (e.g. I want "RecordID" not "RecordId").
The problem is that if I declare a variable (or it is an input param to a stored proc), subsequent formatting doesn't respect the casing of the variable as it was declared.
For example:
DECLARE @RecordID int
SET @recordid = 5
Ctrl-K, Ctrl-D should change it to
SET @RecordID = 5
but it does not
6
votes
Jason Kochel
shared this idea
-
Barry Seymour commented
I love this idea and was going to suggest it myself. It's what VB.NET does. Please please please!