From eef27b88ab5cb925d772e93f028d63beb988df48 Mon Sep 17 00:00:00 2001 From: Terminal <32599364+TerminalFi@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:53:31 -0700 Subject: [PATCH] Update PrettyJson.py fixes #173 --- PrettyJson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PrettyJson.py b/PrettyJson.py index 452540e..2f106b0 100644 --- a/PrettyJson.py +++ b/PrettyJson.py @@ -168,7 +168,7 @@ def highlight_error(self, region: sublime.Region, message: str): ) self.phantom_set.update(self.phantoms) self.view.show(region) - self.view.set_status("json_errors", message) + sublime.status_message(f"json_errors\t{message}") # Description: Taken from # - https://github.com/sublimelsp/LSP/blob/master/plugin/diagnostics.py