vscode-sqlite
vscode-sqlite copied to clipboard
[Feature Request] Heading label above query output
Would it be possible to add an (optional) header label to the navigation bar above the query output? It could be taken from a comment line above the SQL statement, perhaps if it contains some markup characters. It would make the SQLite output more readable, especially when the outputs from multiple queries are shown at once.
An example:
-- ## Quantity of Images, by Category
select category, count(*) from Images group by category;