Vim – Quit/Close Netrw without selecting any file
Use <c-6>/<c-^> to go back to the previous buffer. See :h CTRL-6. Pro-tip: use :Rex to resume exploring. See :h :Rex
Use <c-6>/<c-^> to go back to the previous buffer. See :h CTRL-6. Pro-tip: use :Rex to resume exploring. See :h :Rex
netrw is a kind of vim plugin/script which supports reading and writing files across networks. .netrwhist is a history file which maintains all the directories that were modified. So whenever you modify the contents of ~/.vim it adds one entry in .netrwhist A sample .netrwhist is as shown let g:netrw_dirhistmax =10 let g:netrw_dirhist_cnt =6 let … Read more