使用vim甚至是gvim时,用del或backspace删除后,字符仍残留,一定要按一下esc,才能看到删除的字符从屏幕上消失。解决方法如下
修改vim的配置文件, 我的在 /etc/vim/vimrc, 有的可能在~/.vimrc,不知道是不是个linux发行版本有关系。
sudo gedit /etc/vim/vimrc
添加:
set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set hls
set nocompatible
set bs=2
set sw=2
syntax on
保存,重新开启 vim, 问题解决了!
阅读(2140) | 评论(0) | 转发(0) |