Raise walker max_entries to 256

The default is only 50

Closes #3175
This commit is contained in:
David Heinemeier Hansson
2025-11-05 17:29:09 +01:00
parent 7a0bdaafa4
commit cb03d7d84b
2 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
force_keyboard_focus = true # forces keyboard forcus to stay in Walker max_results = 256 # 256 should be enough for everyone
selection_wrap = true # wrap list if at bottom or top force_keyboard_focus = true # forces keyboard forcus to stay in Walker
theme = "omarchy-default" # theme to use selection_wrap = true # wrap list if at bottom or top
theme = "omarchy-default" # theme to use
additional_theme_location = "~/.local/share/omarchy/default/walker/themes/" additional_theme_location = "~/.local/share/omarchy/default/walker/themes/"
[placeholders] [placeholders]

5
migrations/1762352101.sh Normal file
View File

@@ -0,0 +1,5 @@
echo "Increase Walker limit on how many entries can be shown to 256"
if ! grep -q "max_results" ~/.config/walker/config.toml; then
sed -i "1i max_results = 256 # 256 should be enough for everyone" ~/.config/walker/config.toml
fi