Closed
Description
I have a problem about omni completion of ruby code.
I upload my vimrc & bugreport.txt and sample file for reproducing this problem.
Please see https://github.com/k-sakai/freeze-vim-setting.
Problem:
- Freeze rubycomplete#Complete (Never return any result).
Reproducing:
- At first, enable filetype plugin. For example, "filetype plugin on" in your vimrc.
- In ruby file, type the for completion of specific object's method. See below example.
Example:
test.rb
example = gets.foo
example.(type <C-x> <C-o> here)
What happen:
- omni completion never retrun any result
- and just desplay searching message.
I think right behavior in this case is
- returning the completion list or
- finishing search and display the message "Pattern not found".