As the title, I notice netrw will create a .netrwhist at my vimfile when
on windows(don't know if it do on unix too), how to prevent it from the
file creation for security issue sometime.
--
Regards,
Yue Wu
Key Laboratory of Modern Chinese Medicines
Department of Traditional Chinese Medicine
China Pharmaceutical University
No.24, Tongjia Xiang Street, Nanjing 210009, China
However, you could delete the file immediately after it was generated, I
suppose: (untested)
au VimLeave * if filereadable("[path here]/.netrwhist")|call
delete("[path here]/.netrwhist")|endif
Regards,
Chip Campbell
Thanks, it works.