mirror of
https://github.com/latex-lsp/texlab.git
synced 2025-12-23 09:19:21 +00:00
Show docs for BibTeX entries with a capital letter
This commit is contained in:
parent
4057ae6d52
commit
2df5caa1a7
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ object BibtexEntryTypeHoverProvider : HoverProvider {
|
|||
|
||||
val name = request.document.tree.root.children
|
||||
.filterIsInstance<BibtexEntrySyntax>()
|
||||
.firstOrNull { it.type.range.contains(request.position) }?.type?.text?.substring(1)
|
||||
.firstOrNull { it.type.range.contains(request.position) }?.type?.text?.substring(1)?.toLowerCase()
|
||||
?: return null
|
||||
|
||||
val metadata = BibtexEntryTypeMetadataProvider.getMetadata(name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue