List files of folder page by page with LS command
pipe it into more
:
ls -la | more
Then down arrow scrolls to the next line, spacebar jumps a page at a time
more
is good, less
gives more scrolling options (up and down):
ls | less
If you want color:
ls --color=always | less -iXRS
Quit less
as if it were vi
, :q