Aleksandr Perfilev
Aleksandr Perfilev
I confirming the same problem on SublimeText for Windows: 1. After reloading Sublime during 2-3 second I still can use autocomplete, but after then it's breaking. 2. Also I can't...
I have no `All Autocomplete` plugin, as pointed above. Full list of packages on my SublimeText in order of loading (from console): ``` ignored_packages: ["AppleScript", "CodeFormatter", "EasyMotion", "Emmet", "Emmet Css...
@vovkkk Console output is: ``` command: plain_tasks_new command: insert_best_completion {"default": "\t", "exact": false} command: auto_complete command: insert {"characters": "\n"} command: insert {"characters": "\n"} command: auto_complete ``` But still not work.
@vovkkk, ``` >>> import sublime_plugin, pprint; pprint.pprint(sublime_plugin.all_callbacks.get('on_query_completions')) [, , , , , ] ```
@vovkkk It was Cucumber package conflict. I disabled this plugin and all work fine now.
Seems, there are common limitations on queries: > CAML query can contains at most two comparison statement inside or block. From: [https://social.msdn.microsoft.com/Forums/office/en-US/f615e8df-8206-46d1-8a0f-3a3fad47bf43/caml-query-with-more-than-two-or-statements?forum=sharepointdevelopmentlegacy](https://social.msdn.microsoft.com/Forums/office/en-US/f615e8df-8206-46d1-8a0f-3a3fad47bf43/caml-query-with-more-than-two-or-statements?forum=sharepointdevelopmentlegacy)
So. after "googling" the solution looks like include multiple conditions in top-level condition, like this (for 3 conditions): ```python Where: [ 'And', ('Eq', Field1', 'Value1'), 'And', ('Eq', Field2', 'Value2'), ('Eq',...
> Do you have any suggestions on improving the syntax for these queries? Query syntax may be like this: ```python query = { 'Where': [ ('And', [ ('Eq', 'Field1', 'Value1'),...