diff options
author | Luke aka SwissalpS <Luke@SwissalpS.ws> | 2023-08-09 20:22:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-09 14:22:16 -0400 |
commit | 4d801ec0715b7e7842e95cdc3b4ad09bc9088b6c (patch) | |
tree | 7c044f4097ad2176b773bf34e1c45c9cb0834959 /plugins/settings.lua | |
parent | 14bfadaaa84925ba07d69d7a24a701306a89e5e7 (diff) | |
download | lite-xl-plugins-4d801ec0715b7e7842e95cdc3b4ad09bc9088b6c.tar.gz lite-xl-plugins-4d801ec0715b7e7842e95cdc3b4ad09bc9088b6c.zip |
Update settings.lua max log items default is 800 not 80 (#266)
* Update settings.lua max log items default is 800 not 80
see: https://github.com/lite-xl/lite-xl/blob/cf028c510a908a1e208588ec90b57fef422f88bf/data/core/config.lua#L6
* Update manifest.json
* Update settings.lua min log entries to 150 from 50
Diffstat (limited to 'plugins/settings.lua')
-rw-r--r-- | plugins/settings.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/settings.lua b/plugins/settings.lua index 6be6112..2b947ca 100644 --- a/plugins/settings.lua +++ b/plugins/settings.lua @@ -618,8 +618,8 @@ settings.add("Development", description = "The maximum amount of entries to keep on the log UI.", path = "max_log_items", type = settings.type.NUMBER, - default = 80, - min = 50, + default = 800, + min = 150, max = 2000 }, { |