_Sublime 3203
LSP from Package Control 0.8.2
python-language-server 0.25.0
macOS 10.14.4_

Is it intended that these snippet things are being presented like that? It makes the autocompletion quite hard to read.
This package has the setting:
// Resolve completions and apply snippet if received.
"resolve_completion_for_snippets": false,
I've tried both true and false and it has no effect on the above problem.
BTW, I'm not entirely clear on what that setting does from reading its comment. Could you please describe the difference the user would experience (in terms of what they see and type) between having that enabled and disabled?
This is unintended and is being worked on to get fixed.
I think we could introduce another setting where the user can specify if they want LSP to indicate snippet support (as it appears that pyls's snippets just started showing up without the user opting in)
The other setting is because the javascript-typescript language server needed a resolveCompletion call to the server to get the actual snippet. I'd like to get rid of that feature as I suspect few people use it.
fixed by #551
Most helpful comment
I think we could introduce another setting where the user can specify if they want LSP to indicate snippet support (as it appears that pyls's snippets just started showing up without the user opting in)
The other setting is because the javascript-typescript language server needed a resolveCompletion call to the server to get the actual snippet. I'd like to get rid of that feature as I suspect few people use it.