How to delete buffer when after right click on tab I choose close
?
views:
42answers:
1
A:
Try
:set nohidden
If this works, add set nohidden
to your .vimrc
file.
Chetan
2010-10-23 06:33:56
I just `:set nohidden` and NO, it does not delete the buffer
kfl62
2010-10-23 06:47:10
@kfl62 It should not. It just unloads buffer when it is abandoned, thus preventing it from consuming memory.
ZyX
2010-10-23 10:21:32