我只是对.vimrc
文件和.bash_aliases
文件进行了一些更改,从那时起我无法使用退格键删除单词。
我的.vimrc
文件有:
set nocompatible
set number
set incsearch
set autoindent
set ruler
set autowrite
set smarttab
set linebreak
set spell
set et
set title
set mouse=v
set history=50
set tabstop=4
set matchtime=2
set matchpairs+=<:>
syntax enable
filetype plugin indent on
filetype indent on
set sw=4
map <f2> :w\|!python %
hi SpellBad ctermfg=000 guifg=#000
我的.bash_aliases
文件有两行用于 Vim:
alias vim="vim -c 'startinsert' -u ~/.vim/.vimrc"
alias vi="vi -c 'startinsert' -u ~/.vim/.vimrc"
我的~/.vim
目录没有单个插件或脚本,因此插件不可能导致这种情况。
~/.vim/.vimrc
是一个符号链接。实际.vimrc
文件位于~/vimrc/
git 存储库的目录中。