Is there any way to make it so there are more files shown when starting CommandT or CtrlP? Each of them only show 10 results at first even though my project has 100 of files. I would love it if the results panel would take up most of the terminal if that is possible?
Thank you for any help you can give,
Rob
@Rob_Simpson ,
From the documentation you set it with let g:ctrlp_match_window
:
let g:ctrlp_regexp = 0
<
Can be toggled on/off by pressing <c-r> inside the prompt.
*'g:ctrlp_match_window'*
Change the postion, the listing order of results, the minimum and the maximum
heights of the match window: >
let g:ctrlp_match_window = ''
<
Example: >
let g:ctrlp_match_window = 'bottom,order:btt,min:1,max:10,results:10'
<
The position: (default: bottom)
top - show the match window at the top of the screen.
bottom - show the match window at the bottom of the screen.
The listing order of results: (default: btt)
order:ttb - from top to bottom.
order:btt - from bottom to top.
The minimum and maximum heights:
HTH
1 Like
Man, thank you so much. Asked question on SO and there was not much help. This answered my issue right away.