Updated Hover ideas (markdown)

Sam McCall 2019-05-03 15:40:47 +02:00
parent 09e1b71db5
commit 856e0865d2

@ -9,9 +9,16 @@ Info we may want to include (in API and/or UI):
Possible layout
***
SymbolCollector::**initialize**<br>
member function in namespace `clang::clangd`<br>
```
void SymbolCollector::initialize(ASTContext &Ctx) override;
```
_member function_
This is where we'd put a documentation comment, if we had one!
**Parameters**:
- `Ctx`: `ASTContext &`
```
namespace clang::clangd {
void SymbolCollector::initialize(ASTContext &Ctx) override;
}
```
***