Dossy Shiobara
Dossy Shiobara
I just submitted a different (but related) feature request #459, which isn't focused on the filters but just having an API method to fetch `requests` type resources that are accessed...
I've disabled Prettier and have `"editor.formatOnSave": true` and when loading VSCode, I get this error in the status line:  ``` Extension 'HTML Language Features' cannot format 'sections/header-image.liquid' ``` As...
Here's my `test.liquid`, all "messed up" hoping to get pretty-printed: ``` this is a test foo | {% schema %} { "foo": "bar", "key":"value" ,"ay":"bee" } {% endschema %} ```...
I was able to get it to work with your `.liquidrc` and I also happened to have `whatwedo.twig` and `mblode.twig-language-2` extensions installed, and I think that `whatwedo.twig` might have been...
I think I'm going to have to wait for you to release Liquify because I just let `sissel.shopify-liquid` v2.3 reformat some of my actual project Liquid files, and there's some...
@joshbedo It's probably not what you want to hear, but as a VSCode/Vim and a [`jq`](https://stedolan.github.io/jq/) user, I mark the region inside the `{% schema %}` section and pipe it...
This would be super useful, but in the meantime, my work-around for terraform 0.11.13: 1. `terraform state pull >state` 2. edit `state` file in text editor, look for the `tls_private_key`...
In case anyone comes along after me and has the same issue, I managed to get it to work using this filter: ``` ruby { code => 'event.set("[@metadata][sentry][user]", { :ip_address...
I don't know if it's worth opening an entire separate feature request for my idea, but it would be nice to be able to specify the fully qualified plugin path...
Also, if you need to interpolate in the database name (you can't let `prepare()` wrap it it with single-quotes), like this: ``` $wpdb->prepare( 'SELECT ... FROM ' . className::CONSTANT_VAR ....