With the vim ctrlp (control-p) plugin, when I execute the control+p
command to search for files, the window showing the results is at most 10 lines high. How can I make it bigger, and take up my entire window so I can see more results at a time?
How to increase the height/size of the results/match window for the vim ctrlp plugin?
1k views Asked by Rob Bednark At
1
Set the
max
value for thectrlp_match_window
(in your vim session or in your .vimrc file), e.g.,:let g:ctrlp_match_window = 'min:4,max:999'
Per
:help g:ctrlp_match_window
:See also: https://github.com/kien/ctrlp.vim/issues/187#issuecomment-44924110