Shougo / neocomplcache.vim

Ultimate auto-completion system for Vim.
http://www.vim.org/scripts/script.php?script_id=2620
1.72k stars 135 forks source link

neocomplcache with coffeescript #499

Closed cvlmtg closed 9 years ago

cvlmtg commented 9 years ago

I've a problem with coffeescript. let's suppose I write this object

object =
  foo: ->
    console.log 'foo'
  bar: ->
    |

If I write @f and I start autocomplete, I'd like to complete to @foo but instead it does complete to nothing. is there a way to tell neocomplcache to ignore @ and complete "foo"?

Shougo commented 9 years ago

You must change g:neocomplcache_keyword_patterns value.