We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb2fae commit e77b567Copy full SHA for e77b567
Editors/vscode/src/inlayHints.ts
@@ -53,9 +53,9 @@ const hintStyle: InlayHintStyle = {
53
54
makeDecoration: (hint, converter) => ({
55
range: converter.asRange({
56
- start: hint.position,
57
- end: { ...hint.position, character: hint.position.character + 1 } }
58
- ),
+ start: { ...hint.position, character: hint.position.character - 1 },
+ end: hint.position
+ }),
59
renderOptions: {
60
after: {
61
// U+200C is a zero-width non-joiner to prevent the editor from
0 commit comments