Skip to content

Commit 79a2128

Browse files
committed
Cut 1.29.0
1 parent 1ba8c05 commit 79a2128

File tree

6 files changed

+35
-3
lines changed

6 files changed

+35
-3
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.28.0
1+
1.29.0

messages.json

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"1.26.0": "messages/1.26.0.txt",
2727
"1.27.0": "messages/1.27.0.txt",
2828
"1.28.0": "messages/1.28.0.txt",
29+
"1.29.0": "messages/1.29.0.txt",
2930
"1.3.0": "messages/1.3.0.txt",
3031
"1.3.1": "messages/1.3.1.txt",
3132
"1.4.0": "messages/1.4.0.txt",

messages/1.29.0.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
=> 1.29.0
2+
3+
⚠️⚠️⚠️
4+
To ensure that everything works properly after LSP package is updated,
5+
it's strongly recommended to restart Sublime Text once it finishes updating all packages.
6+
⚠️⚠️⚠️
7+
8+
# New features
9+
10+
- add commands for opening "find references" in bottom or quick panel (#2409) (Rafał Chłodnicki)
11+
- Add format on paste (#2397) (Предраг Николић)
12+
13+
# Fixes and Improvements
14+
15+
- Fix usage of sublime.score_selector (#2427) (Benjamin Schaaf)
16+
- Fix find_open_file incompatibility with older ST versions (Janos Wortmann)
17+
18+
# Refactoring
19+
20+
- Remove hover provider count view setting (Janos Wortmann)
21+
- Remove unnecessary argument from lsp_symbol_rename command (Janos Wortmann)
22+
23+
# Documentation
24+
25+
- docs: add info about typst-lsp commands (#2424) (Ilia)
26+
- docs: add systemverilog/verible language server setup guide (#2416) (Johnny Martínez)
27+
- docs: rewrite self-help instructions (#2405) (Rafał Chłodnicki)
28+
- docs: rewritten "common problems" section (#2406) (Rafał Chłodnicki)
29+
- A few enhancements for the docs website (#2402) (jwortmann)
30+
- chore: deploy docs preview on docs changes (#2403) (Rafał Chłodnicki)

plugin/core/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = (1, 28, 0)
1+
__version__ = (1, 29, 0)

plugin/goto_diagnostic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
PREVIEW_PANE_CSS = """
3636
.diagnostics {padding: 0.5em}
3737
.diagnostics a {color: var(--bluish)}
38-
.diagnostics.error {background-color: color(var(--redish) alpha(0.25))}
38+
.diagnostics.error {background-color: color(var(--redish) alpha(0.25)); white-space: pre-wrap}
3939
.diagnostics.warning {background-color: color(var(--yellowish) alpha(0.25))}
4040
.diagnostics.info {background-color: color(var(--bluish) alpha(0.25))}
4141
.diagnostics.hint {background-color: color(var(--bluish) alpha(0.25))}

popups.css

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
background-color: color(var(--redish) alpha(0.25));
4242
color: var(--foreground);
4343
padding: 0.5rem;
44+
white-space: pre-wrap;
4445
}
4546
.warnings {
4647
border-width: 0;

0 commit comments

Comments
 (0)