This provides hover information for classes, defs, fields, and template
arguments. Like PDLL, this pulls documentation from the source code
when hovering over fields and records.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Nice, thanks
mlir/lib/Tools/lsp-server-support/SourceMgrUtils.cpp | ||
---|---|---|
103 | Should we skip over lines with TODO and FIXME? I'm thinking of the case of comment describing function followed by TODO, where the latter normally doesn't add much doc info. (Not required and there may not be enough of these to warrant extra complexity for now) |
mlir/lib/Tools/lsp-server-support/SourceMgrUtils.cpp | ||
---|---|---|
103 | I don't think we should mostly given that clangd doesn't either. I've tried to model the same behavior there as much as possible, so that it's less surprising when you switch between languages. |
Should we skip over lines with TODO and FIXME? I'm thinking of the case of comment describing function followed by TODO, where the latter normally doesn't add much doc info.
(Not required and there may not be enough of these to warrant extra complexity for now)