aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-06-12 02:02:02 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2022-06-12 02:02:02 +0200
commitc33bff18cf9e5f60477cd065050d57aa58153db3 (patch)
tree02142da048add7ef90b6474deabe5d9b3cfc6cb5 /src
parent872d1b4c7b74c5f9dba8de658994954fff5c1f64 (diff)
typo
Diffstat (limited to 'src')
-rw-r--r--src/server/hover.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/hover.odin b/src/server/hover.odin
index 97d8d22..56e8bb0 100644
--- a/src/server/hover.odin
+++ b/src/server/hover.odin
@@ -77,7 +77,7 @@ get_hover_information :: proc(document: ^common.Document, position: common.Posit
hover.contents.kind = "markdown"
hover.contents.value = str
hover.range = common.get_token_range(position_context.identifier^, ast_context.file.src)
- return hover, true
+ return hover, true, true
}
}
}
@@ -87,7 +87,7 @@ get_hover_information :: proc(document: ^common.Document, position: common.Posit
hover.contents.kind = "markdown"
hover.contents.value = str
hover.range = common.get_token_range(position_context.implicit_context^, ast_context.file.src)
- return hover, true
+ return hover, true, true
}
}