diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-01-18 11:41:08 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-01-18 11:41:08 +0900 |
commit | 54aaa99fd4f55fab932ce1d22e6f45ad5d79acd5 (patch) | |
tree | ea83bbfb5400ff4ed4471cdc7ce4235d5564d048 /autoload | |
parent | 8be279000bda5dde08cee88d19cf43fc2f8eff98 (diff) | |
download | deoplete.nvim-54aaa99fd4f55fab932ce1d22e6f45ad5d79acd5.zip |
Remove go default omni pattern
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/deoplete/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/deoplete/init.vim b/autoload/deoplete/init.vim index ce1d47a..a5cf7a5 100644 --- a/autoload/deoplete/init.vim +++ b/autoload/deoplete/init.vim @@ -146,7 +146,7 @@ function! deoplete#init#_variables() abort "{{{ \ '[a-zA-Z_]\w*::\w*']) call deoplete#util#set_pattern( \ g:deoplete#omni#_input_patterns, - \ 'go,java', ['[^. \t0-9]\.\w*']) + \ 'java', ['[^. \t0-9]\.\w*']) call deoplete#util#set_pattern( \ g:deoplete#omni#_input_patterns, \ 'javascript,typescript', ['[^. \t0-9]\.([a-zA-Z_]\w*)?']) |