errors: Print code actions in error message

Previously they were only exposed by the language server, but now the
command line will print the old and new text.
This commit is contained in:
James Westman 2024-01-25 20:02:02 -06:00
parent dd2e9a10cb
commit a689150a8b
2 changed files with 12 additions and 2 deletions

View file

@ -26,7 +26,7 @@ Blueprint is a markup language and compiler for GTK 4 user interfaces.
using Gtk 4.0;
template $MyAppWindow : ApplicationWindow {
template MyAppWindow : ApplicationWindow {
default-width: 600;
default-height: 300;
title: _("Hello, Blueprint!");
@ -35,7 +35,7 @@ Blueprint is a markup language and compiler for GTK 4 user interfaces.
HeaderBar {}
Label {
label: bind template.main_text;
label: bind MyAppWindow.main_text;
}
}