rpeshkov / vscode-text-tables

VSCode extension that brings the power of Emacs table editing
MIT License
38 stars 14 forks source link

Format Under Cursor within code comment? #71

Open bradlitterell opened 2 years ago

bradlitterell commented 2 years ago

Format under cursor successfully turns this:

|test|test2|test3|
|this is a|test not in a comment|

into this:

| test      | test2                 | test3 |
| this is a | test not in a comment |       |

Except if the table is in a code comment like this, in which case it does nothing.

// |test|test2|test3|
// |this is a|test not in a comment|

This is a feature request to support this for non-MD files.