* Build a markdown table of all contexts.
()
| 18 | * Build a markdown table of all contexts. |
| 19 | */ |
| 20 | function generateContextsTable(): string { |
| 21 | return markdownTable( |
| 22 | ['Context', 'Description'], |
| 23 | KEYBINDING_CONTEXTS.map(ctx => [ |
| 24 | `\`${ctx}\``, |
| 25 | KEYBINDING_CONTEXT_DESCRIPTIONS[ctx], |
| 26 | ]), |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Build a markdown table of all actions with their default bindings and context. |
no test coverage detected