diff --git a/plugin/core/windows.py b/plugin/core/windows.py index bfe4f9607..dd7e8af65 100644 --- a/plugin/core/windows.py +++ b/plugin/core/windows.py @@ -296,7 +296,7 @@ def start_async(self, config: ClientConfig, initiating_view: sublime.View) -> No "Re-enable by running \"LSP: Enable Language Server In Project\" from the Command Palette.", "\n\n--- Error: ---\n{1}" )).format(config.name, str(e)) - status = f"LSP: Failed to start {config.name}… See console" + status = f"Failed to start {config.name}… See console" exception_log(f"Unable to start subprocess for {config.name}", e) if isinstance(e, CalledProcessError): print("Server output:\n{}".format(e.output.decode('utf-8', 'replace'))) diff --git a/plugin/core/workspace.py b/plugin/core/workspace.py index cc87dd070..b63cdf6b3 100644 --- a/plugin/core/workspace.py +++ b/plugin/core/workspace.py @@ -148,7 +148,7 @@ def enable_in_project(window: sublime.Window, config_name: str) -> None: window.set_project_data(project_data) else: message = f"Can't enable {config_name} in the current workspace. Ensure that the project is saved first." - status = f"LSP: Can't enable {config_name} in this workspace… See console" + status = f"Can't enable {config_name} in this workspace… See console" notify(window, message, status) @@ -162,5 +162,5 @@ def disable_in_project(window: sublime.Window, config_name: str) -> None: window.set_project_data(project_data) else: message = f"Can't disable {config_name} in the current workspace. Ensure that the project is saved first." - status = f"LSP: Can't enable {config_name} in this workspace… See console" + status = f"Can't enable {config_name} in this workspace… See console" notify(window, message, status) diff --git a/plugin/execute_command.py b/plugin/execute_command.py index d89fe4e65..50c456ee8 100644 --- a/plugin/execute_command.py +++ b/plugin/execute_command.py @@ -60,7 +60,7 @@ def handle_error_async(self, error: Error, command_name: str) -> None: :param command_name: The name of the command that was executed. """ message = f"command {command_name} failed. Reason: {str(error)}" - status = f"LSP: {command_name} failed… See console" + status = f"{command_name} failed… See console" notify(self.view.window(), message, status) def _expand_variables(self, command_args: list[Any]) -> list[Any]: