Results 55 comments of Mal

I added a option to specify minimum characters: ``` vim let g:completor_min_chars = 2 ```

Thanks for reporting! The commit b23e8b804664531a1cff2d173048c34c66490e1b suppressed the error messages. Please update.

Now you can call the function `completor#do('signature')` to get the call signature. The result will be echoed to the command line. You can map a key to call the function...

The support for finding references is implemented in d21811453f962f12facbe87b285bde11fa040e43. Call the function `:call completor#do("references")` to show the references. You can map a key for convenience.

completor dose nothing about highlight. Have you tried to comment out all other plugins and make completor the only plugin to test if the problem still exists?

What the commit of your installed completor? I think the problem can not be reproduced in the lasted commit. Please update.

The fix #61 should improve this problem. @amadeus

See: maralla/completor-neosnippet#1

Here is an example of how to write a new completer: https://github.com/maralla/completor-swift. If the completer is the default of completor.vim, you should import the new completer eagerly in a ftplugin...

Update completor to the latest and the LSP workspace configuration can be set using the following settings: ```vim let g:completor_filetype_map = {} let g:completor_filetype_map.json = { \ 'ft': 'lsp', \...