It is well known that vim's netrw extension allows one to manage files directly inside vim. For example to copy a file using the following key strokes in vim:
mf (to mark each file)
mt (to set the current directory as the target)
mc (to copy the marked files into the target)
However, after all of that is done, the target directory is still set in the netrw headers at the top:
" Copy/Move Tgt: /home/...
I want to unset the target directory because I don't want to accidentally copy other marked files to the previously targeted directory. I would rather netrw prompt me after my intentions are complete.
However, I can't seem to find this answer anywhere online.
How can I unset the target directory?