()
| 187 | |
| 188 | // delete stored aliases, will be generated on next request |
| 189 | public async refresh(): Promise<void> { |
| 190 | this.aliases = undefined; |
| 191 | await this.persistentState?.update('r.helpPanel.cachedAliases', undefined); |
| 192 | await this.makeAllAliases(); |
| 193 | } |
| 194 | |
| 195 | // get a list of all aliases |
| 196 | public async getAllAliases(): Promise<rHelp.Alias[] | undefined> { |
nothing calls this directly
no test coverage detected