vim crashes with AutoComplPop plugin

ruby, vim

Solution

I found a way to prevent the vim crashing using autocomplpop and filetype=ruby.

put the follow line in your .vimrc

let g:acp_behaviorRubyOmniMethodLength = -1

this will prevent autocomplpop trigger when you type the "." (period)

It isn't a fix. (I'm not a vim plugin programmer)

good luck!

Problem

I use vim to edit the ruby files, but it crashes when I type ".". I've found that it is caused by the AutoComplPop plugin. What I should do?

Original source