Skip to content

Commit e191df9

Browse files
committed
Match typed case for keywords
1 parent 2f0ae7a commit e191df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/provider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class OracleCompletionProvider {
3939
let suggestion;
4040
let firstChar = prefix.charAt(0);
4141

42-
if (firstChar == prefix.toUpperCase()){
42+
if (firstChar == firstChar.toUpperCase()){
4343
suggestion = {
4444
"text" : keywordName.toUpperCase(),
4545
"displayText" : keywordName.toUpperCase(),

0 commit comments

Comments
 (0)