e***e 发帖数: 168 | 1 Hi suppose I open a file, and someone changes it. Now, can I refresh my vim
buffer without quitting and re-entering? |
E*V 发帖数: 17544 | 2 vim will remind you
vim
【在 e***e 的大作中提到】 : Hi suppose I open a file, and someone changes it. Now, can I refresh my vim : buffer without quitting and re-entering?
|
e***e 发帖数: 168 | 3 it does not happen in my vim. Can i manually refresh? |
E*V 发帖数: 17544 | 4 哦,wierd
you can try to write it to a file
it will remind you
【在 e***e 的大作中提到】 : it does not happen in my vim. Can i manually refresh?
|
z******i 发帖数: 59 | |
x****r 发帖数: 12 | 6 for the current buffer:
:setlocal autoread
globally:
:set autoread
manually:
:e |
e***e 发帖数: 168 | |