방금 .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 저장소 인 디렉토리에 있습니다.