From 79a2128840af25a27dec14aeb4be23790efd5459 Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Wed, 28 Feb 2024 08:27:35 +0100 Subject: [PATCH] Cut 1.29.0 --- VERSION | 2 +- messages.json | 1 + messages/1.29.0.txt | 30 ++++++++++++++++++++++++++++++ plugin/core/version.py | 2 +- plugin/goto_diagnostic.py | 2 +- popups.css | 1 + 6 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 messages/1.29.0.txt diff --git a/VERSION b/VERSION index 3c71e4721..72f3c1dac 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.28.0 \ No newline at end of file +1.29.0 \ No newline at end of file diff --git a/messages.json b/messages.json index 7d12816dc..58ed88d9f 100644 --- a/messages.json +++ b/messages.json @@ -26,6 +26,7 @@ "1.26.0": "messages/1.26.0.txt", "1.27.0": "messages/1.27.0.txt", "1.28.0": "messages/1.28.0.txt", + "1.29.0": "messages/1.29.0.txt", "1.3.0": "messages/1.3.0.txt", "1.3.1": "messages/1.3.1.txt", "1.4.0": "messages/1.4.0.txt", diff --git a/messages/1.29.0.txt b/messages/1.29.0.txt new file mode 100644 index 000000000..ad82b190a --- /dev/null +++ b/messages/1.29.0.txt @@ -0,0 +1,30 @@ +=> 1.29.0 + +⚠️⚠️⚠️ +To ensure that everything works properly after LSP package is updated, +it's strongly recommended to restart Sublime Text once it finishes updating all packages. +⚠️⚠️⚠️ + +# New features + +- add commands for opening "find references" in bottom or quick panel (#2409) (Rafał Chłodnicki) +- Add format on paste (#2397) (Предраг Николић) + +# Fixes and Improvements + +- Fix usage of sublime.score_selector (#2427) (Benjamin Schaaf) +- Fix find_open_file incompatibility with older ST versions (Janos Wortmann) + +# Refactoring + +- Remove hover provider count view setting (Janos Wortmann) +- Remove unnecessary argument from lsp_symbol_rename command (Janos Wortmann) + +# Documentation + +- docs: add info about typst-lsp commands (#2424) (Ilia) +- docs: add systemverilog/verible language server setup guide (#2416) (Johnny Martínez) +- docs: rewrite self-help instructions (#2405) (Rafał Chłodnicki) +- docs: rewritten "common problems" section (#2406) (Rafał Chłodnicki) +- A few enhancements for the docs website (#2402) (jwortmann) +- chore: deploy docs preview on docs changes (#2403) (Rafał Chłodnicki) diff --git a/plugin/core/version.py b/plugin/core/version.py index 594b8564f..b68c353d5 100644 --- a/plugin/core/version.py +++ b/plugin/core/version.py @@ -1 +1 @@ -__version__ = (1, 28, 0) +__version__ = (1, 29, 0) diff --git a/plugin/goto_diagnostic.py b/plugin/goto_diagnostic.py index f9d0abad7..aef65c8e9 100644 --- a/plugin/goto_diagnostic.py +++ b/plugin/goto_diagnostic.py @@ -35,7 +35,7 @@ PREVIEW_PANE_CSS = """ .diagnostics {padding: 0.5em} .diagnostics a {color: var(--bluish)} - .diagnostics.error {background-color: color(var(--redish) alpha(0.25))} + .diagnostics.error {background-color: color(var(--redish) alpha(0.25)); white-space: pre-wrap} .diagnostics.warning {background-color: color(var(--yellowish) alpha(0.25))} .diagnostics.info {background-color: color(var(--bluish) alpha(0.25))} .diagnostics.hint {background-color: color(var(--bluish) alpha(0.25))} diff --git a/popups.css b/popups.css index 4e43362b0..621bc11ea 100644 --- a/popups.css +++ b/popups.css @@ -41,6 +41,7 @@ background-color: color(var(--redish) alpha(0.25)); color: var(--foreground); padding: 0.5rem; + white-space: pre-wrap; } .warnings { border-width: 0;