You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ignores interpolations inside of injected text and replaces them with placeholders so they can be formatted correctly. one example of this being useful is when using say nix with injected lua or bash and stylua will error out when it sees an interpolation like ${var} inside a string. This PR turns it something like _CONFORM_PLACEHOLDER_idx to make sure that it can be formatted properly. the actual replacement is not done with simply replace and is actually using the treesitter tree as they include information of injections. i've also made it possible to add your own queries for replacement to make this work as such
Please mark this as draft until it's ready to review. If it is ready to review, please include a description in the PR.
This ignores interpolations inside of injected text and replaces them with placeholders so they can be formatted correctly. one example of this being useful is when using say nix with injected lua or bash and stylua will error out when it sees an interpolation like ${var} inside a string. This PR turns it something like _CONFORM_PLACEHOLDER_idx to make sure that it can be formatted properly. the actual replacement is not done with simply replace and is actually using the treesitter tree as they include information of injections. i've also made it possible to add your own queries for replacement to make this work as such
done
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This ignores interpolations inside of injected text and replaces them with placeholders so they can be formatted correctly. one example of this being useful is when using say nix with injected lua or bash and stylua will error out when it sees an interpolation like ${var} inside a string. This PR turns it something like _CONFORM_PLACEHOLDER_idx to make sure that it can be formatted properly. the actual replacement is not done with simply replace and is actually using the treesitter tree as they include information of injections. i've also made it possible to add your own queries for replacement to make this work as such