Is there is any plugin that saves all files opened in vim and opens them after reboot? For example it can be a left side panel with opened files and after you quit it saves the list.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

vim supports sessions. This allows you to save

:mksession session.vim

and restore

$ vim -S session.vim

sessions. See

:help Session

for the online documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.