Spawning the window in the background caused significant latency, making the interactive jq function essentially useless on windows.
This commit is contained in:
parent
1eb32df515
commit
87f022b8af
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue