Ted Conbeer

Results 42 comments of Ted Conbeer

I'm also experiencing this. The output of thefuck --version (something like The Fuck 3.1 using Python 3.5.0 and Bash 4.4.12(1)-release): ``` The Fuck 3.31 using Python 3.10.0 and Bash 5.0.17(1)-release...

Not OP, but confirming that excluding the /mnt/ search path worked for me. Thanks -- didn't see the Troubleshooting page

@sgoley how's this for changed files only? ``` sqlfmt $(git diff main --name-only) ```

thanks. @sgoley fwiw, sqlfmt will ignore/exclude any files that don't end in `.sql` or `.sql.jinja`, so you shouldn't need all of those `grep` steps on changed files -- you can...

Thanks for the report! We're parsing this as two strings and a name (the first string is `'{{ var('`) instead of a jinja expression inside a string. I'm surprised this...

No longer convinced this is a good idea. Newlines capture a lot of critical state, and reworking the logic requires tracking that state separately, which isn't any better than keeping...

https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#using-the-python-version-input ``` - uses: actions/setup-python@v4 with: python-version: '3.11.0-rc1 - 3.11.x' ```

`as` can also be followed by parens, (e.g., ctes)

Thanks for the suggestion. Any interest in contributing this?