Spawning the window in the background caused significant latency, making the interactive jq function essentially useless on windows.
This commit is contained in:
s7726 2025-04-11 09:52:34 -07:00
parent 1eb32df515
commit 87f022b8af
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -508,6 +508,7 @@ class JqQueryPrettyJson(sublime_plugin.WindowCommand):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
creationflags=subprocess.CREATE_NO_WINDOW,
)
QUERY_LEN = len(query)
raw_json = self.get_content()