Skip to content

Commit 2eed5cc

Browse files
committed
Add missed separator when hint reaches itself limit
1 parent 712dffb commit 2eed5cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/kotlin/space/whitememory/pythoninlayparams/types/AbstractPythonInlayTypeHintsCollector.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ abstract class AbstractPythonInlayTypeHintsCollector(editor: Editor, open val se
9696
while (iterator.hasNext()) {
9797
if (limit != null && count == limit) {
9898
if (iterator.hasNext()) {
99-
separatedInlayPresentation.add(factory.smallText("..."))
99+
separatedInlayPresentation.add(factory.smallText("| ..."))
100100
}
101101
break
102102
}

0 commit comments

Comments
 (0)