Skip to content

Commit 87e0909

Browse files
committed
Allow completion of special variables
FIX: Allow built-in special variables for a dialect to be completed.
1 parent ef183b0 commit 87e0909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/complete.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,6 @@ export function completeKeywords(keywords: {[name: string]: number}, upperCase:
212212
build: (name: string, type: string) => Completion) {
213213
let completions = Object.keys(keywords)
214214
.map(keyword => build(upperCase ? keyword.toUpperCase() : keyword, completionType(keywords[keyword])))
215-
return ifNotIn(["QuotedIdentifier", "SpecialVar", "String", "LineComment", "BlockComment", "."],
215+
return ifNotIn(["QuotedIdentifier", "String", "LineComment", "BlockComment", "."],
216216
completeFromList(completions))
217217
}

0 commit comments

Comments
 (0)