derekwyatt/vim-scala

Comma backsearch seems not working

Closed this issue · 2 comments

Hi,

I just tried the plugin, it's excellent. But the comma key seems not working properly. I have to type the comma key twice to search backward.

I'm using vim 7.4 at the moment. The comma key worked properly if I start vim without any configuration.

This has to do with the default (and hard-coded) mappings. I'll make a fix for this but if you might have an easy workaround right now. If you don't have fuzzyfinder installed, then this should eliminate the problem:

let g:scala_use_default_keymappings=0

If you do have fuzzyfinder installed, then you're stuck due to the mappings that are hard-coded there right now. Of course, you can comment things out in the plugin/scala.vim file.

That works for me, thanks!