So, I come back to my computer after the weekend and when I try to edit a file in vim now I can't get into insert mode at all. Used to be just by pressing I or Esc+I. The Insert key doesn't do it either.
I don't know much about vim, I haven't knowingly changed any settings.
Any idea what's gone wrong? I'm running Ubuntu 12.04.
My /etc/vim/vimrc file (minus comments) looks like:
runtime! debian.vim
if has("syntax")
syntax on
endif
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif
I don't have a vimrc.local file but there is a vimrc.tiny which contains:
set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim73,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after
set compatible
Both are identical to the same files on a remote server where vim behaves normally.

IorR? Also trymv ~/.vimrc ~/.vimrc.bakbefore starting vim. – speakr Aug 6 '12 at 11:07shift+iandshift+r? They don't put me in insert mode either. And I don't have any~/.vimrcfile to move. – Anentropic Aug 6 '12 at 11:19/etc/vim/vimrc? – speakr Aug 6 '12 at 12:53:set nocompatible. In contrast to vim, in vi the insert mode notification is not shown on the status line - so if you pressiyou actually are in insert mode but perhaps you just don't know it. Also, does a~/.vimrcexist on the remote server where vim behaves normally? – speakr Aug 6 '12 at 14:26