garybernhardt / selecta

A fuzzy text selector for files and anything else you need to select. Use it from vim, from the command line, or anywhere you can run a shell command.
MIT License
1.34k stars 81 forks source link

The way to render menu full-height #91

Closed sgtpep closed 8 years ago

sgtpep commented 9 years ago

For some unknown reason the height of menu is limited to 20 lines. And there's no way to override this without editing the source. IMHO full-height mode should be default, while limiting height could be available using command line option.

rschmitt commented 9 years ago

Full-height mode is only a good default for vim integration. It sucks for the command line, since it blows away a lot of useful context. You can experiment with heatseeker's --full-screen option to see if you really want this to be the default.

garybernhardt commented 8 years ago

I just added a --height option in 299ca42. You can say --height full to run in full screen. The default is still 20 lines, though, for the reason that @rschmitt pointed out.