Description
i updated my python-mode installation through vundle today and discover some really strange behavior. if i want to delete something in a "def" or "class" line i delete the character with "del" or "x" and it deletes the first character and jumps to the "def" right above it. i tried to disable folding and i even disabled everything except python-mode. i still have that behavior. i tested the same configuration on my other box. it worked... i did a update... and it have that behavior again. right now i cant work no more with python-mode. here is my .vimrc:
set nocompatible
filetype off
" vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Bundle 'gmarik/Vundle.vim'
Bundle 'klen/python-mode'
Bundle 'altercation/vim-colors-solarized'
call vundle#end()
filetype plugin indent on
source $HOME/.vim/python.vim
source $HOME/.vim/html.vim
set number
syntax on
set backspace=2
set background=dark
let g:pymode_rope_lookup_project = 0
let g:pymode_rope = 0
set laststatus=2
set nofoldenabl
i run "VIM - Vi IMproved 7.4".
i found out with which commit it breaks for me... its commit "59613fbc48d90dc7f876a2c31fad5054a6ddbb1a". one commit before everything works fine.