juanfranblanco / vscode-solidity

Visual Studio Code language support extension for Solidity smart contracts in Ethereum https://marketplace.visualstudio.com/items?itemName=JuanBlanco.solidity
MIT License
871 stars 187 forks source link

featured: when `@inheritdoc` is specified, add the inherited doc underneath the doc #443

Open llllvvuu opened 5 months ago

llllvvuu commented 5 months ago

Current hover text:

### Function: foo
#### Contract: Foo
    function foo() external 
    /// @inheritdoc IFoo

Feature request

### Function: foo
#### Contract: Foo
    function foo() external 
    /// @inheritdoc IFoo
---
/// @notice ...
/// @dev ...
/// ^ from `IFoo.foo`