Correctly sending formating tab in SQL
Posted: Jun 14th, ’22, 12:44
Hi friends!
Basic question. I'm trying to create a super simple text expander with some SQL / Python code that relies on tabs for formating. E.g:
However, when it's expanded the tab gets replicated in the line below screwing up with the formatting, i.e. it looks like this
I've tried it both with the {tab} tag and a regular tab.
Hence, my question is: how to properly use and format tabs in FastKeys so that tabs don't get replicated a line below screwing up with my formatting?
Cheers!
Basic question. I'm trying to create a super simple text expander with some SQL / Python code that relies on tabs for formating. E.g:
Code: Select all
SELECT
{tab}col_1
FROM table
Code: Select all
SELECT
col_1
FROM table
Hence, my question is: how to properly use and format tabs in FastKeys so that tabs don't get replicated a line below screwing up with my formatting?
Cheers!