1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00

Bump history max size to 1000

100 was a bit small for long running sessions.
This commit is contained in:
Maxime Coste 2024-07-16 12:01:57 +10:00
parent fe8a03d158
commit 8a109bd2f4

View File

@ -31,7 +31,7 @@ const String& StaticRegister::get_main(const Context& context, size_t main_index
void HistoryRegister::set(Context& context, ConstArrayView<String> values, bool restoring)
{
constexpr size_t size_limit = 100;
constexpr size_t size_limit = 1000;
if (restoring)
{