Skip to content

Commit 625b431

Browse files
committed
Turn off the wip to merge and avoid conflicts later.
1 parent 8f9402f commit 625b431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rescript-editor-support/PartialParser.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ let findCompletable = (text, offset) => {
186186
let parts = Str.split(Str.regexp_string("."), s);
187187
let parts = s.[len - 1] == '.' ? parts @ [""] : parts;
188188
switch (parts) {
189-
| [id] when String.lowercase_ascii(id) == id =>
189+
| [id] when String.lowercase_ascii(id) == id && false /* TODO */ =>
190190
switch (findJsxContext(text, offset - len - 1)) {
191191
| None => Cpath(parts)
192192
| Some(componentName) => Cjsx(componentName, id)

0 commit comments

Comments
 (0)