Skip to content

Commit f4a6db3

Browse files
committed
v1.6.4 strings highlighting fix
1 parent 51a99e5 commit f4a6db3

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

TSQL.sublime-syntax

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ contexts:
119119
captures:
120120
1: comment.block.c
121121
pop: true
122+
- include: strings
122123
- include: comments
123124
- include: alias_as
124125

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"1.6.0": "messages/1.6.0.txt",
1515
"1.6.1": "messages/1.6.1.txt",
1616
"1.6.2": "messages/1.6.2.txt",
17-
"1.6.3": "messages/1.6.3.txt"
17+
"1.6.3": "messages/1.6.3.txt",
18+
"1.6.4": "messages/1.6.4.txt"
1819
}

messages/1.6.4.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
TSQL Easy 1.6.4 changelog:
2+
3+
* Strings highlighting fix

syntax_test_tsql.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ set @gibrddapietanigiro = convert(bigint,
1515
CAST(substring(convert(binary(4), @rddapietanigiro), 2, 1) AS binary(1)) +
1616
CAST(substring(convert(binary(4), @rddapietanigiro), 1, 1) AS binary(1)))
1717

18+
SELECT name FROM sysdatabases WHERE name = 'Automation'
19+
-- ^ punctuation.definition.string.begin.sql
20+
-- ^^^^^ string.quoted.single.sql
21+
-- ^ punctuation.definition.string.end.sql
22+
1823
set @gibrddapietanigiro = case when @gibrddapietanigiro < 0 then @gibrddapietanigiro + 4294967296 else @gibrddapietanigiro end
1924
-- <- keyword.other.DML.sql
2025
-- ^ keyword.other.DML.sql

0 commit comments

Comments
 (0)