Hello,

I'm learning vim currently, and I when I use the "Ctrl-P" plugin - I'm able to quickly find a file in the project directory.

Code:
 :CtrlP /path/to/the/project/root      ===>      Enter     ===>     <C-d>    ===>     and start typing the name of the file.
So, my question is: after I open the file - in new tab or in split - how can I call CtrlP again, pointing to the same doc root? ... Cause if I just type :CtrlP - it is pointing to the folder where the last opened file is.

And I want CtrlP to point to the doc root again, without typing the whole

Code:
:CtrlP /path/to/the/project/root    ===>    Enter ......
Thanks in advance ...