feat: add configuration and command to toggle display of inline diagnostics
This commit is contained in:
parent
4ae59d848a
commit
1d59d1e46a
3 changed files with 10 additions and 1 deletions
|
@ -12,6 +12,7 @@ enable_terminal_color_scheme: bool = builtin.os.tag != .windows,
|
||||||
highlight_current_line: bool = true,
|
highlight_current_line: bool = true,
|
||||||
highlight_current_line_gutter: bool = true,
|
highlight_current_line_gutter: bool = true,
|
||||||
whitespace_mode: []const u8 = "none",
|
whitespace_mode: []const u8 = "none",
|
||||||
|
inline_diagnostics: bool = true,
|
||||||
animation_min_lag: usize = 0, //milliseconds
|
animation_min_lag: usize = 0, //milliseconds
|
||||||
animation_max_lag: usize = 150, //milliseconds
|
animation_max_lag: usize = 150, //milliseconds
|
||||||
enable_format_on_save: bool = false,
|
enable_format_on_save: bool = false,
|
||||||
|
|
|
@ -1010,7 +1010,8 @@ pub const Editor = struct {
|
||||||
self.render_syntax(theme, cache, root) catch {};
|
self.render_syntax(theme, cache, root) catch {};
|
||||||
self.render_cursors(theme, ctx_.cell_map) catch {};
|
self.render_cursors(theme, ctx_.cell_map) catch {};
|
||||||
self.render_whitespace_map(theme, ctx_.cell_map) catch {};
|
self.render_whitespace_map(theme, ctx_.cell_map) catch {};
|
||||||
self.render_diagnostics(theme, hl_row, ctx_.cell_map) catch {};
|
if (tui.config().inline_diagnostics)
|
||||||
|
self.render_diagnostics(theme, hl_row, ctx_.cell_map) catch {};
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_cursors(self: *Self, theme: *const Widget.Theme, cell_map: CellMap) !void {
|
fn render_cursors(self: *Self, theme: *const Widget.Theme, cell_map: CellMap) !void {
|
||||||
|
|
|
@ -595,6 +595,13 @@ const cmds = struct {
|
||||||
}
|
}
|
||||||
pub const gutter_style_next_meta: Meta = .{ .description = "Next line number style" };
|
pub const gutter_style_next_meta: Meta = .{ .description = "Next line number style" };
|
||||||
|
|
||||||
|
pub fn toggle_inline_diagnostics(_: *Self, _: Ctx) Result {
|
||||||
|
const config = tui.config_mut();
|
||||||
|
config.inline_diagnostics = !config.inline_diagnostics;
|
||||||
|
try tui.save_config();
|
||||||
|
}
|
||||||
|
pub const toggle_inline_diagnostics_meta: Meta = .{ .description = "Toggle display of diagnostics inline" };
|
||||||
|
|
||||||
pub fn goto_next_file_or_diagnostic(self: *Self, ctx: Ctx) Result {
|
pub fn goto_next_file_or_diagnostic(self: *Self, ctx: Ctx) Result {
|
||||||
if (self.is_panel_view_showing(filelist_view)) {
|
if (self.is_panel_view_showing(filelist_view)) {
|
||||||
switch (self.file_list_type) {
|
switch (self.file_list_type) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue