feat: add limit_auto_save_file_types config option

closes #77
This commit is contained in:
CJ van den Berg 2025-07-16 19:38:27 +02:00
parent 99664742c3
commit ada40b989c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 22 additions and 1 deletions

View file

@ -22,7 +22,7 @@ restore_last_cursor_position: bool = true,
follow_cursor_on_buffer_switch: bool = false, //scroll cursor into view on buffer switch
default_cursor: []const u8 = "default",
enable_auto_save: bool = false,
auto_save_file_types: []const []const u8 = &.{},
limit_auto_save_file_types: ?[]const []const u8 = null, // null means *all*
indent_size: usize = 4,
tab_width: usize = 8,