commongeek
commongeek
Do you have any thoughts on how I can easily add coloring to this library? Which method/function is best to do this in? Can I do this without modifying the...
A lot of styles are included in pygments, including solarized-dark (https://pygments.org/styles/). Instead of putting the entire style code into coloring.py, you can just do something like this: ``` from pygments.styles...
I use PonyPRM with Python 3.12 on Windows without problem. However after upgrading to 3.13 I got the following error: File "C:\Users\Administrator\Python313\Lib\site-packages\pony\orm\core.py", line 3578, in select query = reverse.entity._select_all() File...
I’m working with the makeAboveTablePanelConfigs method in my plugin and have a question about its behavior. Shouldn't clicking the panel button a second time close the panel (e.g., setting display:...
In the footer, I always see "Queries took 1.2 ms." Is this hardcoded on line 920 of the views/table.py file? ``` request.actor, "execute-sql", resolved.db.name ), query_ms=1.2, select_templates=[ f"{'*' if template_name...
Am I the only one seeing the "sqlite_sequence" table on the list of tables? I hided it using metadata, but shouldn't it be hidden by default, just like other internal...
If the value of "label_column" in the Metadata file were not escaped, SQLite functions could be used within it, e.g. ``` "tables": { "person": { "label_column": "CONCAT(first_name, ' ', last_name)"...
In a decorated function, local variables are not highlighted (italicized). I don't know if it's a bug or not. 
Why is the LSP configuration for other languages more advanced than for Python? For example, I can’t set an executable as the LSP server for Python (only a Python module...