carlitux / deoplete-ternjs

deoplete.nvim source for javascript
MIT License
277 stars 24 forks source link

Update README.md #28

Closed SephVelut closed 8 years ago

SephVelut commented 8 years ago

self._tern_show_signature = vim.eval('g:tern_show_signature_in_pum') != '0' is comparing to a string. 0 != '0' returns true and _tern_show_signature will not mimic tern_for_vim option to set tern_show_signature_in_pum to 0 to disable function signature preview.

carlitux commented 8 years ago

oh, ok... thanks!