forked from vintharas/BarbaricNeoVim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeoplete.log
2812 lines (2812 loc) · 348 KB
/
deoplete.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2018-11-26 23:49:55,654 INFO [71188] (deoplete.logging) --- Deoplete Log Start ---
2018-11-26 23:49:55,662 INFO [71188] (deoplete.logging) NVIM v0.3.1, Python 3.7.0, pynvim unknown
2018-11-26 23:51:01,466 DEBUG [71188] (deoplete.core) on_event: Init
2018-11-26 23:51:01,484 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ' '
2018-11-26 23:51:01,485 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' '
2018-11-26 23:51:01,494 DEBUG [71188] (deoplete.core) Process 0: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/base.py
2018-11-26 23:51:01,496 DEBUG [71188] (deoplete.core) Process 1: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/omni.py
2018-11-26 23:51:01,496 DEBUG [71188] (deoplete.core) Process 2: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/member.py
2018-11-26 23:51:01,497 DEBUG [71188] (deoplete.core) Process 3: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/around.py
2018-11-26 23:51:01,497 DEBUG [71188] (deoplete.core) Process 0: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/file.py
2018-11-26 23:51:01,497 DEBUG [71188] (deoplete.core) Process 1: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/buffer.py
2018-11-26 23:51:01,497 DEBUG [71188] (deoplete.core) Process 2: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/dictionary.py
2018-11-26 23:51:01,497 DEBUG [71188] (deoplete.core) Process 3: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/tag.py
2018-11-26 23:51:01,499 DEBUG [71188] (deoplete.core) Process 0: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/nvim-typescript/rplugin/python3/deoplete/sources/typescript.py
2018-11-26 23:51:01,499 DEBUG [71188] (deoplete.core) Process 1: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neosnippet.vim/rplugin/python3/deoplete/sources/neosnippet.py
2018-11-26 23:51:01,500 DEBUG [71188] (deoplete.core) Process 2: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neoinclude.vim/rplugin/python3/deoplete/sources/file_include.py
2018-11-26 23:51:01,500 DEBUG [71188] (deoplete.core) Process 3: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neco-vim/rplugin/python3/deoplete/sources/vim.py
2018-11-26 23:51:01,500 DEBUG [71188] (deoplete.core) Process 0: /Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neco-look/rplugin/python3/deoplete/sources/look.py
2018-11-26 23:51:01,653 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:01,654 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:01,657 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:51:01,712 DEBUG [71188] (deoplete.core) completion_begin (Async): ' '
2018-11-26 23:51:01,819 INFO [71322] (deoplete.logging) --- Deoplete Log Start ---
2018-11-26 23:51:01,819 INFO [71324] (deoplete.logging) --- Deoplete Log Start ---
2018-11-26 23:51:01,820 INFO [71324] (deoplete.logging) NVIM v0.3.1, Python 3.7.0, pynvim unknown
2018-11-26 23:51:01,820 INFO [71322] (deoplete.logging) NVIM v0.3.1, Python 3.7.0, pynvim unknown
2018-11-26 23:51:01,821 INFO [71323] (deoplete.logging) --- Deoplete Log Start ---
2018-11-26 23:51:01,821 INFO [71325] (deoplete.logging) --- Deoplete Log Start ---
2018-11-26 23:51:01,822 INFO [71323] (deoplete.logging) NVIM v0.3.1, Python 3.7.0, pynvim unknown
2018-11-26 23:51:01,822 INFO [71325] (deoplete.logging) NVIM v0.3.1, Python 3.7.0, pynvim unknown
2018-11-26 23:51:01,823 DEBUG [71324] (deoplete.child) Loaded Source: member (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/member.py)
2018-11-26 23:51:01,824 DEBUG [71322] (deoplete.child) Loaded Source: file (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/file.py)
2018-11-26 23:51:01,824 DEBUG [71324] (deoplete.child) Loaded Source: dictionary (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/dictionary.py)
2018-11-26 23:51:01,824 DEBUG [71323] (deoplete.child) Loaded Source: omni (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/omni.py)
2018-11-26 23:51:01,824 DEBUG [71325] (deoplete.child) Loaded Source: around (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/around.py)
2018-11-26 23:51:01,824 DEBUG [71324] (deoplete.child) Loaded Source: file/include (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neoinclude.vim/rplugin/python3/deoplete/sources/file_include.py)
2018-11-26 23:51:01,825 DEBUG [71323] (deoplete.child) Loaded Source: buffer (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/buffer.py)
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Set Source attributes: member
2018-11-26 23:51:01,825 DEBUG [71325] (deoplete.child) Loaded Source: tag (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/source/tag.py)
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,825 DEBUG [71325] (deoplete.child) Loaded Source: vim (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neco-vim/rplugin/python3/deoplete/sources/vim.py)
2018-11-26 23:51:01,825 DEBUG [71323] (deoplete.child) Loaded Source: neosnippet (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neosnippet.vim/rplugin/python3/deoplete/sources/neosnippet.py)
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,825 DEBUG [71324] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,825 DEBUG [71325] (deoplete.child) Set Source attributes: around
2018-11-26 23:51:01,825 DEBUG [71323] (deoplete.child) Set Source attributes: omni
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: mark ([~])
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,826 DEBUG [71325] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,826 DEBUG [71324] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,826 DEBUG [71323] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,827 DEBUG [71324] (deoplete.child) Attribute: min_pattern_length (0)
2018-11-26 23:51:01,827 DEBUG [71325] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,827 DEBUG [71323] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,827 DEBUG [71324] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,827 DEBUG [71322] (deoplete.child) Loaded Source: typescript (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/nvim-typescript/rplugin/python3/deoplete/sources/typescript.py)
2018-11-26 23:51:01,827 DEBUG [71325] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,827 DEBUG [71323] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,827 DEBUG [71324] (deoplete.child) Set Source attributes: dictionary
2018-11-26 23:51:01,827 DEBUG [71325] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,827 DEBUG [71324] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,827 DEBUG [71323] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,827 DEBUG [71325] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,828 DEBUG [71325] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,828 DEBUG [71325] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: min_pattern_length (0)
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Set Source attributes: buffer
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: mark ([D])
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,828 DEBUG [71324] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,828 DEBUG [71323] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Set Source attributes: tag
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,829 DEBUG [71324] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,829 DEBUG [71322] (deoplete.child) Loaded Source: look (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/neco-look/rplugin/python3/deoplete/sources/look.py)
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,829 DEBUG [71325] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,829 DEBUG [71322] (deoplete.child) Set Source attributes: file
2018-11-26 23:51:01,829 DEBUG [71323] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,830 DEBUG [71323] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: mark ([T])
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,830 DEBUG [71323] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Set Source attributes: file/include
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,830 DEBUG [71324] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,830 DEBUG [71322] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,830 DEBUG [71325] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: mark ([FI])
2018-11-26 23:51:01,831 DEBUG [71325] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Set Source attributes: neosnippet
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: min_pattern_length (0)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Set Source attributes: typescript
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,831 DEBUG [71325] (deoplete.child) Set Source attributes: vim
2018-11-26 23:51:01,831 DEBUG [71324] (deoplete.child) Attribute: min_pattern_length (0)
2018-11-26 23:51:01,831 DEBUG [71323] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,831 DEBUG [71322] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,832 DEBUG [71324] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: filetypes (['typescript', 'tsx', 'typescript.tsx', 'typescriptreact'])
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: input_pattern ((\.|::)\w*)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: filetypes (['vim'])
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: is_debug_enabled (1)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: input_pattern (\.\w*)
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: mark ()
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: max_abbr_width (0)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,832 DEBUG [71323] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: max_kind_width (0)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,832 DEBUG [71322] (deoplete.child) Attribute: max_menu_width (0)
2018-11-26 23:51:01,832 DEBUG [71325] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,833 DEBUG [71325] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: min_pattern_length (1)
2018-11-26 23:51:01,833 DEBUG [71325] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,833 DEBUG [71325] (deoplete.child) Attribute: min_pattern_length (-1)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Set Source attributes: look
2018-11-26 23:51:01,833 DEBUG [71325] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: converters (['converter_remove_overlap', 'converter_truncate_abbr', 'converter_truncate_kind', 'converter_truncate_menu'])
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: disabled_syntaxes ([])
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: filetypes ([])
2018-11-26 23:51:01,833 DEBUG [71324] (deoplete.child) Loaded Filter: converter_auto_delimiter (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_delimiter.py)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: input_pattern ()
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: is_debug_enabled (False)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: is_silent (False)
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: mark ([look])
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: matchers (['matcher_fuzzy'])
2018-11-26 23:51:01,833 DEBUG [71322] (deoplete.child) Attribute: max_abbr_width (80)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: max_candidates (500)
2018-11-26 23:51:01,834 DEBUG [71324] (deoplete.child) Loaded Filter: converter_remove_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_paren.py)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: max_kind_width (40)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: max_menu_width (40)
2018-11-26 23:51:01,834 DEBUG [71323] (deoplete.child) Loaded Filter: converter_auto_delimiter (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_delimiter.py)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: max_pattern_length (80)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: min_pattern_length (4)
2018-11-26 23:51:01,834 DEBUG [71322] (deoplete.child) Attribute: sorters (['sorter_rank'])
2018-11-26 23:51:01,834 DEBUG [71323] (deoplete.child) Loaded Filter: converter_remove_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_paren.py)
2018-11-26 23:51:01,834 DEBUG [71324] (deoplete.child) Loaded Filter: matcher_head (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_head.py)
2018-11-26 23:51:01,834 DEBUG [71323] (deoplete.child) Loaded Filter: matcher_head (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_head.py)
2018-11-26 23:51:01,835 DEBUG [71324] (deoplete.child) Loaded Filter: converter_auto_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_paren.py)
2018-11-26 23:51:01,835 DEBUG [71325] (deoplete.child) Loaded Filter: converter_auto_delimiter (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_delimiter.py)
2018-11-26 23:51:01,835 DEBUG [71323] (deoplete.child) Loaded Filter: converter_auto_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_paren.py)
2018-11-26 23:51:01,835 DEBUG [71325] (deoplete.child) Loaded Filter: converter_remove_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_paren.py)
2018-11-26 23:51:01,835 DEBUG [71322] (deoplete.child) Loaded Filter: converter_auto_delimiter (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_delimiter.py)
2018-11-26 23:51:01,835 DEBUG [71324] (deoplete.child) Loaded Filter: matcher_cpsm (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_cpsm.py)
2018-11-26 23:51:01,836 DEBUG [71323] (deoplete.child) Loaded Filter: matcher_cpsm (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_cpsm.py)
2018-11-26 23:51:01,836 DEBUG [71325] (deoplete.child) Loaded Filter: matcher_head (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_head.py)
2018-11-26 23:51:01,836 DEBUG [71322] (deoplete.child) Loaded Filter: converter_remove_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_paren.py)
2018-11-26 23:51:01,836 DEBUG [71325] (deoplete.child) Loaded Filter: converter_auto_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_paren.py)
2018-11-26 23:51:01,836 DEBUG [71322] (deoplete.child) Loaded Filter: matcher_head (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_head.py)
2018-11-26 23:51:01,836 DEBUG [71323] (deoplete.child) Loaded Filter: matcher_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_fuzzy.py)
2018-11-26 23:51:01,836 DEBUG [71324] (deoplete.child) Loaded Filter: matcher_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_fuzzy.py)
2018-11-26 23:51:01,836 DEBUG [71322] (deoplete.child) Loaded Filter: converter_auto_paren (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_auto_paren.py)
2018-11-26 23:51:01,836 DEBUG [71325] (deoplete.child) Loaded Filter: matcher_cpsm (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_cpsm.py)
2018-11-26 23:51:01,837 DEBUG [71323] (deoplete.child) Loaded Filter: converter_remove_overlap (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_overlap.py)
2018-11-26 23:51:01,837 DEBUG [71322] (deoplete.child) Loaded Filter: matcher_cpsm (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_cpsm.py)
2018-11-26 23:51:01,837 DEBUG [71325] (deoplete.child) Loaded Filter: matcher_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_fuzzy.py)
2018-11-26 23:51:01,837 DEBUG [71325] (deoplete.child) Loaded Filter: converter_remove_overlap (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_overlap.py)
2018-11-26 23:51:01,837 DEBUG [71324] (deoplete.child) Loaded Filter: converter_remove_overlap (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_overlap.py)
2018-11-26 23:51:01,838 DEBUG [71322] (deoplete.child) Loaded Filter: matcher_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_fuzzy.py)
2018-11-26 23:51:01,838 DEBUG [71324] (deoplete.child) Loaded Filter: converter_truncate_menu (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_menu.py)
2018-11-26 23:51:01,838 DEBUG [71323] (deoplete.child) Loaded Filter: converter_truncate_menu (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_menu.py)
2018-11-26 23:51:01,838 DEBUG [71325] (deoplete.child) Loaded Filter: converter_truncate_menu (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_menu.py)
2018-11-26 23:51:01,838 DEBUG [71322] (deoplete.child) Loaded Filter: converter_remove_overlap (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_remove_overlap.py)
2018-11-26 23:51:01,839 DEBUG [71322] (deoplete.child) Loaded Filter: converter_truncate_menu (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_menu.py)
2018-11-26 23:51:01,839 DEBUG [71325] (deoplete.child) Loaded Filter: matcher_length (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_length.py)
2018-11-26 23:51:01,839 DEBUG [71323] (deoplete.child) Loaded Filter: matcher_length (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_length.py)
2018-11-26 23:51:01,839 DEBUG [71324] (deoplete.child) Loaded Filter: matcher_length (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_length.py)
2018-11-26 23:51:01,839 DEBUG [71322] (deoplete.child) Loaded Filter: matcher_length (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_length.py)
2018-11-26 23:51:01,839 DEBUG [71325] (deoplete.child) Loaded Filter: sorter_rank (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_rank.py)
2018-11-26 23:51:01,839 DEBUG [71324] (deoplete.child) Loaded Filter: sorter_rank (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_rank.py)
2018-11-26 23:51:01,839 DEBUG [71323] (deoplete.child) Loaded Filter: sorter_rank (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_rank.py)
2018-11-26 23:51:01,839 DEBUG [71322] (deoplete.child) Loaded Filter: sorter_rank (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_rank.py)
2018-11-26 23:51:01,840 DEBUG [71323] (deoplete.child) Loaded Filter: sorter_word (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_word.py)
2018-11-26 23:51:01,840 DEBUG [71325] (deoplete.child) Loaded Filter: sorter_word (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_word.py)
2018-11-26 23:51:01,840 DEBUG [71322] (deoplete.child) Loaded Filter: sorter_word (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/sorter_word.py)
2018-11-26 23:51:01,840 DEBUG [71323] (deoplete.child) Loaded Filter: matcher_full_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_full_fuzzy.py)
2018-11-26 23:51:01,841 DEBUG [71322] (deoplete.child) Loaded Filter: matcher_full_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_full_fuzzy.py)
2018-11-26 23:51:01,840 DEBUG [71325] (deoplete.child) Loaded Filter: matcher_full_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_full_fuzzy.py)
2018-11-26 23:51:01,841 DEBUG [71324] (deoplete.child) Loaded Filter: matcher_full_fuzzy (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/matcher_full_fuzzy.py)
2018-11-26 23:51:01,841 DEBUG [71325] (deoplete.child) Loaded Filter: converter_truncate_abbr (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_abbr.py)
2018-11-26 23:51:01,841 DEBUG [71322] (deoplete.child) Loaded Filter: converter_truncate_abbr (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_abbr.py)
2018-11-26 23:51:01,842 DEBUG [71324] (deoplete.child) Loaded Filter: converter_truncate_kind (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_kind.py)
2018-11-26 23:51:01,842 DEBUG [71323] (deoplete.child) Loaded Filter: converter_truncate_kind (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_kind.py)
2018-11-26 23:51:01,842 DEBUG [71322] (deoplete.child) Loaded Filter: converter_truncate_kind (/Users/jaimegonzalezgarcia/.config/nvim/pack/minpac/start/deoplete.nvim/rplugin/python3/deoplete/filter/converter_truncate_kind.py)
2018-11-26 23:51:01,889 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:01,891 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' s'
2018-11-26 23:51:02,045 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:02,046 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set'
2018-11-26 23:51:02,047 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:02,048 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set'
2018-11-26 23:51:02,053 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= s, complete_position=-1, is_async=1
2018-11-26 23:51:02,057 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set, complete_position=-1, is_async=0
2018-11-26 23:51:02,057 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set, complete_position=-1, is_async=0
2018-11-26 23:51:02,057 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set, complete_position=-1, is_async=0
2018-11-26 23:51:02,057 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set, complete_position=-1, is_async=0
2018-11-26 23:51:02,060 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:02,066 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set, complete_position=-1, is_async=0
2018-11-26 23:51:03,033 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set '
2018-11-26 23:51:03,197 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set , complete_position=-1, is_async=1
2018-11-26 23:51:03,255 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set '
2018-11-26 23:51:03,260 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set , complete_position=-1, is_async=0
2018-11-26 23:51:04,656 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set '
2018-11-26 23:51:04,822 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set , complete_position=-1, is_async=1
2018-11-26 23:51:04,879 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set '
2018-11-26 23:51:04,886 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set , complete_position=-1, is_async=0
2018-11-26 23:51:05,567 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set '
2018-11-26 23:51:05,740 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set , complete_position=-1, is_async=1
2018-11-26 23:51:05,747 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set'
2018-11-26 23:51:05,913 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set, complete_position=-1, is_async=1
2018-11-26 23:51:05,917 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:05,927 DEBUG [71188] (deoplete.core) do_complete (Async): 33 candidates, input= set, complete_position=1, is_async=0
2018-11-26 23:51:08,298 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' se'
2018-11-26 23:51:08,461 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= se, complete_position=-1, is_async=1
2018-11-26 23:51:08,466 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' s'
2018-11-26 23:51:08,630 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= s, complete_position=-1, is_async=1
2018-11-26 23:51:08,636 DEBUG [71188] (deoplete.core) completion_begin (Async): ' '
2018-11-26 23:51:08,636 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' '
2018-11-26 23:51:08,637 DEBUG [71188] (deoplete.core) completion_begin (Async): ' '
2018-11-26 23:51:08,795 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:08,795 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:08,795 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= , complete_position=-1, is_async=1
2018-11-26 23:51:08,799 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:08,800 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set'
2018-11-26 23:51:08,800 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:08,801 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' set'
2018-11-26 23:51:08,961 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set, complete_position=-1, is_async=1
2018-11-26 23:51:08,961 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set, complete_position=-1, is_async=1
2018-11-26 23:51:08,961 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= set, complete_position=-1, is_async=1
2018-11-26 23:51:08,961 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= set, complete_position=-1, is_async=1
2018-11-26 23:51:08,966 DEBUG [71188] (deoplete.core) completion_begin (Async): ' set'
2018-11-26 23:51:08,974 DEBUG [71188] (deoplete.core) do_complete (Async): 33 candidates, input= set, complete_position=1, is_async=0
2018-11-26 23:51:16,292 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' Selectp'
2018-11-26 23:51:16,458 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= Selectp, complete_position=-1, is_async=1
2018-11-26 23:51:16,521 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' Selectpp'
2018-11-26 23:51:16,522 DEBUG [71188] (deoplete.core) completion_begin (Async): ' Selectpp'
2018-11-26 23:51:16,684 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= Selectpp, complete_position=-1, is_async=1
2018-11-26 23:51:16,685 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= Selectpp, complete_position=-1, is_async=1
2018-11-26 23:51:16,689 DEBUG [71188] (deoplete.core) completion_begin (Async): ' Selectpp'
2018-11-26 23:51:16,696 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= Selectpp, complete_position=-1, is_async=0
2018-11-26 23:51:17,290 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' Selectp'
2018-11-26 23:51:17,454 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= Selectp, complete_position=-1, is_async=1
2018-11-26 23:51:17,459 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' Select'
2018-11-26 23:51:17,625 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= Select, complete_position=-1, is_async=1
2018-11-26 23:51:17,630 DEBUG [71188] (deoplete.core) completion_begin (Async): ' Select'
2018-11-26 23:51:17,638 DEBUG [71188] (deoplete.core) do_complete (Async): 4 candidates, input= Select, complete_position=1, is_async=0
2018-11-26 23:51:17,906 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' Selec'
2018-11-26 23:51:18,064 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= Selec, complete_position=-1, is_async=1
2018-11-26 23:51:18,133 DEBUG [71188] (deoplete.core) completion_begin (Async): ' Selec'
2018-11-26 23:51:18,294 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= Selec, complete_position=-1, is_async=1
2018-11-26 23:51:32,673 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:51:32,674 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:32,675 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:32,840 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=1
2018-11-26 23:51:32,841 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=1
2018-11-26 23:51:32,902 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:32,908 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=0
2018-11-26 23:51:33,841 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:51:34,001 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=1
2018-11-26 23:51:34,059 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:51:34,065 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=0
2018-11-26 23:51:34,138 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C"
2018-11-26 23:51:34,300 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C, complete_position=-1, is_async=1
2018-11-26 23:51:34,359 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C"
2018-11-26 23:51:34,365 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C, complete_position=-1, is_async=0
2018-11-26 23:51:34,531 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-"
2018-11-26 23:51:34,688 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-, complete_position=-1, is_async=1
2018-11-26 23:51:34,744 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-"
2018-11-26 23:51:34,750 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-, complete_position=-1, is_async=0
2018-11-26 23:51:35,020 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C"
2018-11-26 23:51:35,177 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C, complete_position=-1, is_async=1
2018-11-26 23:51:35,183 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:51:35,350 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=1
2018-11-26 23:51:35,355 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:51:35,362 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=0
2018-11-26 23:51:35,403 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<T"
2018-11-26 23:51:35,569 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<T, complete_position=-1, is_async=1
2018-11-26 23:51:35,574 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<TA"
2018-11-26 23:51:35,734 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<TA, complete_position=-1, is_async=1
2018-11-26 23:51:35,739 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<TA"
2018-11-26 23:51:35,746 DEBUG [71188] (deoplete.core) do_complete (Async): 7 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<TA, complete_position=49, is_async=0
2018-11-26 23:51:37,570 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<T"
2018-11-26 23:51:37,747 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<T, complete_position=-1, is_async=1
2018-11-26 23:51:37,751 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:51:37,909 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=1
2018-11-26 23:51:37,914 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:37,915 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:37,915 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:38,075 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=1
2018-11-26 23:51:38,075 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=1
2018-11-26 23:51:38,076 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=1
2018-11-26 23:51:38,079 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '"
2018-11-26 23:51:38,085 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : ', complete_position=-1, is_async=0
2018-11-26 23:52:10,609 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:52:10,777 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=1
2018-11-26 23:52:10,836 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<"
2018-11-26 23:52:10,841 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<, complete_position=-1, is_async=0
2018-11-26 23:52:10,994 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C"
2018-11-26 23:52:11,157 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C, complete_position=-1, is_async=1
2018-11-26 23:52:11,213 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C"
2018-11-26 23:52:11,218 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C, complete_position=-1, is_async=0
2018-11-26 23:52:11,274 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-"
2018-11-26 23:52:11,433 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-, complete_position=-1, is_async=1
2018-11-26 23:52:11,491 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-"
2018-11-26 23:52:11,497 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-, complete_position=-1, is_async=0
2018-11-26 23:52:11,609 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y"
2018-11-26 23:52:11,770 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y, complete_position=-1, is_async=1
2018-11-26 23:52:11,828 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y"
2018-11-26 23:52:11,835 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y, complete_position=-1, is_async=0
2018-11-26 23:52:11,890 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>"
2018-11-26 23:52:12,053 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>, complete_position=-1, is_async=1
2018-11-26 23:52:12,113 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>"
2018-11-26 23:52:12,120 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>, complete_position=-1, is_async=0
2018-11-26 23:52:12,154 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>,"
2018-11-26 23:52:12,315 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>,, complete_position=-1, is_async=1
2018-11-26 23:52:12,371 DEBUG [71188] (deoplete.core) completion_begin (Async): "inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>,"
2018-11-26 23:52:12,377 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <expr> <TAB> pumvisible() ? '<C-N>' : '<C-Y>,, complete_position=-1, is_async=0
2018-11-26 23:52:13,686 DEBUG [71188] (deoplete.core) on_event: BufWritePost
2018-11-26 23:52:16,685 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:52:16,685 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:52:16,686 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:52:16,847 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:16,847 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:16,903 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:52:16,910 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:52:17,234 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:52:17,392 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:52:17,397 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:52:17,556 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:52:17,561 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:52:17,562 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:52:17,562 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:52:17,720 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:17,721 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:17,721 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:17,725 DEBUG [71188] (deoplete.core) completion_begin (Async): 'divr,'
2018-11-26 23:52:17,726 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'divr,'
2018-11-26 23:52:17,726 DEBUG [71188] (deoplete.core) completion_begin (Async): 'divr,'
2018-11-26 23:52:17,887 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=divr,, complete_position=-1, is_async=1
2018-11-26 23:52:17,887 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=divr,, complete_position=-1, is_async=1
2018-11-26 23:52:17,887 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=divr,, complete_position=-1, is_async=1
2018-11-26 23:52:17,892 DEBUG [71188] (deoplete.core) completion_begin (Async): 'divr,'
2018-11-26 23:52:17,898 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=divr,, complete_position=-1, is_async=0
2018-11-26 23:52:20,735 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:52:20,736 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:52:20,737 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:52:20,899 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:20,900 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:20,956 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:52:21,119 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:21,125 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:52:21,145 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:52:21,150 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:52:21,306 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:52:21,311 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:52:21,471 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:52:21,475 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:52:21,476 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:52:21,646 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:21,646 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:21,652 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,'
2018-11-26 23:52:21,652 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,'
2018-11-26 23:52:21,815 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,, complete_position=-1, is_async=1
2018-11-26 23:52:21,815 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,, complete_position=-1, is_async=1
2018-11-26 23:52:21,819 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,'
2018-11-26 23:52:21,825 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,, complete_position=-1, is_async=0
2018-11-26 23:52:22,289 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,,'
2018-11-26 23:52:22,450 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,,, complete_position=-1, is_async=1
2018-11-26 23:52:22,506 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,,'
2018-11-26 23:52:22,511 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,,, complete_position=-1, is_async=0
2018-11-26 23:52:22,545 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,,,'
2018-11-26 23:52:22,710 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,,,, complete_position=-1, is_async=1
2018-11-26 23:52:22,715 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,,,,'
2018-11-26 23:52:22,884 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,,,,, complete_position=-1, is_async=1
2018-11-26 23:52:22,889 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,,,,'
2018-11-26 23:52:22,895 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,,,,, complete_position=-1, is_async=0
2018-11-26 23:52:24,173 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:52:24,173 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:52:24,173 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:52:24,331 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:24,331 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:52:24,390 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:52:24,396 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:52:24,473 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:52:24,631 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:52:24,637 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:52:24,806 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:52:24,810 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,'
2018-11-26 23:52:24,810 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,'
2018-11-26 23:52:24,812 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div,'
2018-11-26 23:52:24,970 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,, complete_position=-1, is_async=1
2018-11-26 23:52:24,970 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,, complete_position=-1, is_async=1
2018-11-26 23:52:24,971 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div,, complete_position=-1, is_async=1
2018-11-26 23:52:24,975 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div,'
2018-11-26 23:52:24,981 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div,, complete_position=-1, is_async=0
2018-11-26 23:52:26,842 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:52:26,843 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): 'div,'
2018-11-26 23:52:26,850 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=div,, complete_position=-1, is_async=0
2018-11-26 23:52:26,938 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:52:27,095 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:52:27,152 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:52:27,158 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=div, complete_position=0, is_async=0
2018-11-26 23:53:11,121 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:11,121 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:53:11,122 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:53:11,286 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:11,287 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:11,347 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:53:11,352 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:53:11,492 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'i'
2018-11-26 23:53:11,655 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=i, complete_position=-1, is_async=1
2018-11-26 23:53:11,660 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'im'
2018-11-26 23:53:11,816 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=im, complete_position=-1, is_async=1
2018-11-26 23:53:11,819 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imap'
2018-11-26 23:53:11,820 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap'
2018-11-26 23:53:11,821 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imap'
2018-11-26 23:53:11,821 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap'
2018-11-26 23:53:11,987 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:11,987 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:11,988 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:11,988 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:11,993 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap'
2018-11-26 23:53:11,999 DEBUG [71188] (deoplete.core) do_complete (Async): 9 candidates, input=imap, complete_position=0, is_async=0
2018-11-26 23:53:13,071 DEBUG [71188] (deoplete.core) on_event: BufWritePost
2018-11-26 23:53:16,751 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:16,752 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:53:16,752 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:53:16,909 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:16,910 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:16,968 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:53:16,974 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:53:17,443 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:53:17,608 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:53:17,612 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:53:17,781 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:53:17,786 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:53:17,787 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): '<div>'
2018-11-26 23:53:17,788 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:53:17,945 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:53:17,946 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:53:17,946 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:53:17,951 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:53:17,958 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=0
2018-11-26 23:53:25,189 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:25,189 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:53:25,190 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:53:25,351 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:25,352 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:25,413 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:53:25,419 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:53:26,433 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:53:26,593 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:53:26,648 DEBUG [71188] (deoplete.core) completion_begin (Async): 'd'
2018-11-26 23:53:26,653 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=d, complete_position=-1, is_async=0
2018-11-26 23:53:26,753 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:53:26,914 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:53:26,970 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:53:26,976 DEBUG [71188] (deoplete.core) do_complete (Async): 48 candidates, input=di, complete_position=0, is_async=0
2018-11-26 23:53:27,039 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:53:27,200 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:53:27,204 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): '<div>'
2018-11-26 23:53:27,365 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:53:27,371 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:53:27,376 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=0
2018-11-26 23:53:31,260 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:31,260 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:53:31,261 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:53:31,416 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:31,417 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:31,449 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:53:31,609 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:53:31,613 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:53:31,614 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'set'
2018-11-26 23:53:31,614 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:53:31,615 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'set'
2018-11-26 23:53:31,615 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:53:31,779 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:53:31,780 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:53:31,780 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:53:31,780 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:53:31,780 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:53:31,784 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:53:31,792 DEBUG [71188] (deoplete.core) do_complete (Async): 34 candidates, input=set, complete_position=0, is_async=0
2018-11-26 23:53:38,884 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'Snippets '
2018-11-26 23:53:39,044 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=Snippets , complete_position=-1, is_async=1
2018-11-26 23:53:39,099 DEBUG [71188] (deoplete.core) completion_begin (Async): 'Snippets '
2018-11-26 23:53:39,104 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=Snippets , complete_position=-1, is_async=0
2018-11-26 23:53:41,540 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:41,541 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:53:41,541 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:53:41,706 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:41,707 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:41,776 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:53:41,778 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'i'
2018-11-26 23:53:41,936 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:53:41,937 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=i, complete_position=-1, is_async=0
2018-11-26 23:53:41,942 DEBUG [71188] (deoplete.core) completion_begin (Async): 'im'
2018-11-26 23:53:41,943 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'im'
2018-11-26 23:53:41,943 DEBUG [71188] (deoplete.core) completion_begin (Async): 'im'
2018-11-26 23:53:42,111 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=im, complete_position=-1, is_async=1
2018-11-26 23:53:42,111 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=im, complete_position=-1, is_async=1
2018-11-26 23:53:42,112 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=im, complete_position=-1, is_async=1
2018-11-26 23:53:42,116 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'impa'
2018-11-26 23:53:42,281 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=impa, complete_position=-1, is_async=1
2018-11-26 23:53:42,286 DEBUG [71188] (deoplete.core) completion_begin (Async): 'impa'
2018-11-26 23:53:42,292 DEBUG [71188] (deoplete.core) do_complete (Async): 1 candidates, input=impa, complete_position=0, is_async=0
2018-11-26 23:53:42,820 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imp'
2018-11-26 23:53:42,977 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imp, complete_position=-1, is_async=1
2018-11-26 23:53:42,982 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'im'
2018-11-26 23:53:43,145 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=im, complete_position=-1, is_async=1
2018-11-26 23:53:43,151 DEBUG [71188] (deoplete.core) completion_begin (Async): 'ima'
2018-11-26 23:53:43,152 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'ima'
2018-11-26 23:53:43,152 DEBUG [71188] (deoplete.core) completion_begin (Async): 'ima'
2018-11-26 23:53:43,309 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=ima, complete_position=-1, is_async=1
2018-11-26 23:53:43,309 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=ima, complete_position=-1, is_async=1
2018-11-26 23:53:43,309 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=ima, complete_position=-1, is_async=1
2018-11-26 23:53:43,314 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imap'
2018-11-26 23:53:43,315 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap'
2018-11-26 23:53:43,484 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:43,485 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:43,489 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap '
2018-11-26 23:53:43,490 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imap '
2018-11-26 23:53:43,490 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap '
2018-11-26 23:53:43,653 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap , complete_position=-1, is_async=1
2018-11-26 23:53:43,653 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imap , complete_position=-1, is_async=1
2018-11-26 23:53:43,653 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap , complete_position=-1, is_async=1
2018-11-26 23:53:43,658 DEBUG [71188] (deoplete.core) completion_begin (Async): 'imap '
2018-11-26 23:53:43,665 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=imap , complete_position=-1, is_async=0
2018-11-26 23:53:47,385 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'imap'
2018-11-26 23:53:47,550 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=imap, complete_position=-1, is_async=1
2018-11-26 23:53:47,554 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'ima'
2018-11-26 23:53:47,717 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=ima, complete_position=-1, is_async=1
2018-11-26 23:53:47,721 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'i'
2018-11-26 23:53:47,722 DEBUG [71188] (deoplete.core) completion_begin (Async): 'i'
2018-11-26 23:53:47,723 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'i'
2018-11-26 23:53:47,883 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=i, complete_position=-1, is_async=1
2018-11-26 23:53:47,884 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=i, complete_position=-1, is_async=1
2018-11-26 23:53:47,884 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=i, complete_position=-1, is_async=1
2018-11-26 23:53:47,888 DEBUG [71188] (deoplete.core) completion_begin (Async): 'i'
2018-11-26 23:53:47,894 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=i, complete_position=-1, is_async=0
2018-11-26 23:53:48,110 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'in'
2018-11-26 23:53:48,271 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=in, complete_position=-1, is_async=1
2018-11-26 23:53:48,277 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'ino'
2018-11-26 23:53:48,443 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=ino, complete_position=-1, is_async=1
2018-11-26 23:53:48,448 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inom'
2018-11-26 23:53:48,448 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inom'
2018-11-26 23:53:48,611 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inom, complete_position=-1, is_async=1
2018-11-26 23:53:48,611 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inom, complete_position=-1, is_async=1
2018-11-26 23:53:48,616 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inom'
2018-11-26 23:53:48,622 DEBUG [71188] (deoplete.core) do_complete (Async): 9 candidates, input=inom, complete_position=0, is_async=0
2018-11-26 23:53:48,707 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'ino'
2018-11-26 23:53:48,875 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=ino, complete_position=-1, is_async=1
2018-11-26 23:53:48,880 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inore'
2018-11-26 23:53:49,041 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inore, complete_position=-1, is_async=1
2018-11-26 23:53:49,046 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inorema'
2018-11-26 23:53:49,047 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inorema'
2018-11-26 23:53:49,049 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inorema'
2018-11-26 23:53:49,049 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inorema'
2018-11-26 23:53:49,211 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inorema, complete_position=-1, is_async=1
2018-11-26 23:53:49,211 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inorema, complete_position=-1, is_async=1
2018-11-26 23:53:49,212 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inorema, complete_position=-1, is_async=1
2018-11-26 23:53:49,212 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inorema, complete_position=-1, is_async=1
2018-11-26 23:53:49,217 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap'
2018-11-26 23:53:49,217 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap'
2018-11-26 23:53:49,379 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap, complete_position=-1, is_async=1
2018-11-26 23:53:49,379 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap, complete_position=-1, is_async=1
2018-11-26 23:53:49,385 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap '
2018-11-26 23:53:49,386 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap '
2018-11-26 23:53:49,386 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap '
2018-11-26 23:53:49,548 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap , complete_position=-1, is_async=1
2018-11-26 23:53:49,549 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap , complete_position=-1, is_async=1
2018-11-26 23:53:49,549 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap , complete_position=-1, is_async=1
2018-11-26 23:53:49,552 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <'
2018-11-26 23:53:49,554 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <'
2018-11-26 23:53:49,554 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <'
2018-11-26 23:53:49,714 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <, complete_position=-1, is_async=1
2018-11-26 23:53:49,714 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <, complete_position=-1, is_async=1
2018-11-26 23:53:49,715 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <, complete_position=-1, is_async=1
2018-11-26 23:53:49,719 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <'
2018-11-26 23:53:49,725 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <, complete_position=-1, is_async=0
2018-11-26 23:53:49,814 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <S'
2018-11-26 23:53:49,975 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <S, complete_position=-1, is_async=1
2018-11-26 23:53:50,033 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <S'
2018-11-26 23:53:50,039 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <S, complete_position=-1, is_async=0
2018-11-26 23:53:51,880 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SH'
2018-11-26 23:53:52,042 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SH, complete_position=-1, is_async=1
2018-11-26 23:53:52,058 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHI'
2018-11-26 23:53:52,228 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHI, complete_position=-1, is_async=1
2018-11-26 23:53:52,229 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIF'
2018-11-26 23:53:52,385 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIF'
2018-11-26 23:53:52,388 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT'
2018-11-26 23:53:52,389 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIF, complete_position=-1, is_async=1
2018-11-26 23:53:52,548 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIF, complete_position=-1, is_async=0
2018-11-26 23:53:52,549 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT'
2018-11-26 23:53:52,551 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT, complete_position=-1, is_async=1
2018-11-26 23:53:52,557 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT, complete_position=-1, is_async=0
2018-11-26 23:53:52,648 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-'
2018-11-26 23:53:52,805 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-, complete_position=-1, is_async=1
2018-11-26 23:53:52,859 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-'
2018-11-26 23:53:52,864 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-, complete_position=-1, is_async=0
2018-11-26 23:53:53,048 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-T'
2018-11-26 23:53:53,205 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-T, complete_position=-1, is_async=1
2018-11-26 23:53:53,211 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TA'
2018-11-26 23:53:53,370 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TA, complete_position=-1, is_async=1
2018-11-26 23:53:53,375 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB'
2018-11-26 23:53:53,375 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB'
2018-11-26 23:53:53,376 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB'
2018-11-26 23:53:53,546 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB, complete_position=-1, is_async=1
2018-11-26 23:53:53,546 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB, complete_position=-1, is_async=1
2018-11-26 23:53:53,546 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB, complete_position=-1, is_async=1
2018-11-26 23:53:53,551 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB'
2018-11-26 23:53:53,554 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB>'
2018-11-26 23:53:53,715 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB, complete_position=-1, is_async=1
2018-11-26 23:53:53,720 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 4 candidates, input=inoremap <SHIFT-TAB>, complete_position=16, is_async=0
2018-11-26 23:53:53,723 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> '
2018-11-26 23:53:53,724 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> '
2018-11-26 23:53:53,724 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> '
2018-11-26 23:53:53,887 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> , complete_position=-1, is_async=1
2018-11-26 23:53:53,888 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> , complete_position=-1, is_async=1
2018-11-26 23:53:53,888 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> , complete_position=-1, is_async=1
2018-11-26 23:53:53,947 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> '
2018-11-26 23:53:53,953 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> , complete_position=-1, is_async=0
2018-11-26 23:53:54,866 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:53:54,866 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): 'inoremap <SHIFT-TAB> '
2018-11-26 23:53:54,873 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=inoremap <SHIFT-TAB> , complete_position=-1, is_async=0
2018-11-26 23:53:58,152 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <'
2018-11-26 23:53:58,315 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <, complete_position=-1, is_async=1
2018-11-26 23:53:58,370 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <'
2018-11-26 23:53:58,375 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <, complete_position=-1, is_async=0
2018-11-26 23:53:58,465 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <C'
2018-11-26 23:53:58,627 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <C, complete_position=-1, is_async=1
2018-11-26 23:53:58,684 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <C'
2018-11-26 23:53:58,689 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <C, complete_position=-1, is_async=0
2018-11-26 23:53:58,709 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <Cp'
2018-11-26 23:53:58,871 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <Cp, complete_position=-1, is_async=1
2018-11-26 23:53:58,928 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <Cp'
2018-11-26 23:53:58,934 DEBUG [71188] (deoplete.core) do_complete (Async): 4 candidates, input=inoremap <SHIFT-TAB> <Cp, complete_position=22, is_async=0
2018-11-26 23:53:59,185 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <C'
2018-11-26 23:53:59,342 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <C, complete_position=-1, is_async=1
2018-11-26 23:53:59,397 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <C'
2018-11-26 23:53:59,402 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <C, complete_position=-1, is_async=0
2018-11-26 23:53:59,560 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <C-'
2018-11-26 23:53:59,720 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <C-, complete_position=-1, is_async=1
2018-11-26 23:53:59,783 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <C-P'
2018-11-26 23:53:59,783 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <C-P'
2018-11-26 23:53:59,949 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <C-P, complete_position=-1, is_async=1
2018-11-26 23:53:59,950 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <C-P, complete_position=-1, is_async=1
2018-11-26 23:53:59,954 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <C-P'
2018-11-26 23:53:59,961 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <C-P, complete_position=-1, is_async=0
2018-11-26 23:54:00,112 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <SHIFT-TAB> <C-P>'
2018-11-26 23:54:00,278 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <SHIFT-TAB> <C-P>, complete_position=-1, is_async=1
2018-11-26 23:54:00,337 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <SHIFT-TAB> <C-P>'
2018-11-26 23:54:00,343 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=inoremap <SHIFT-TAB> <C-P>, complete_position=-1, is_async=0
2018-11-26 23:54:01,894 DEBUG [71188] (deoplete.core) on_event: BufWritePost
2018-11-26 23:54:05,603 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:54:05,603 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:54:05,604 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:54:05,763 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:54:05,764 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:54:05,824 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:54:05,830 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:54:06,040 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:54:06,198 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:54:06,254 DEBUG [71188] (deoplete.core) completion_begin (Async): 's'
2018-11-26 23:54:06,260 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=s, complete_position=-1, is_async=0
2018-11-26 23:54:06,311 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'se'
2018-11-26 23:54:06,474 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=se, complete_position=-1, is_async=1
2018-11-26 23:54:06,494 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'set'
2018-11-26 23:54:06,652 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:54:06,657 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:54:06,666 DEBUG [71188] (deoplete.core) do_complete (Async): 32 candidates, input=set, complete_position=0, is_async=0
2018-11-26 23:54:10,091 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'setfiletype '
2018-11-26 23:54:10,254 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=setfiletype , complete_position=-1, is_async=1
2018-11-26 23:54:10,313 DEBUG [71188] (deoplete.core) completion_begin (Async): 'setfiletype '
2018-11-26 23:54:10,318 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=setfiletype , complete_position=-1, is_async=0
2018-11-26 23:54:11,112 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'setfiletype '
2018-11-26 23:54:11,274 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=setfiletype , complete_position=-1, is_async=1
2018-11-26 23:54:11,330 DEBUG [71188] (deoplete.core) completion_begin (Async): 'setfiletype '
2018-11-26 23:54:11,336 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=setfiletype , complete_position=-1, is_async=0
2018-11-26 23:55:06,648 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:06,649 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): 'inoremap <S'
2018-11-26 23:55:06,650 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'inoremap <S'
2018-11-26 23:55:06,813 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=inoremap <S, complete_position=-1, is_async=1
2018-11-26 23:55:06,814 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=inoremap <S, complete_position=-1, is_async=1
2018-11-26 23:55:06,872 DEBUG [71188] (deoplete.core) completion_begin (Async): 'inoremap <S'
2018-11-26 23:55:06,877 DEBUG [71188] (deoplete.core) do_complete (Async): 1 candidates, input=inoremap <S, complete_position=9, is_async=0
2018-11-26 23:55:10,490 DEBUG [71188] (deoplete.core) on_event: BufWritePost
2018-11-26 23:55:12,245 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:12,246 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:55:12,246 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:12,405 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:12,406 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:12,466 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:55:12,471 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:55:13,498 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:13,660 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:13,665 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'se'
2018-11-26 23:55:13,832 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=se, complete_position=-1, is_async=1
2018-11-26 23:55:13,837 DEBUG [71188] (deoplete.core) completion_begin (Async): 'se'
2018-11-26 23:55:13,851 DEBUG [71188] (deoplete.core) do_complete (Async): 89 candidates, input=se, complete_position=0, is_async=0
2018-11-26 23:55:15,638 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'silent '
2018-11-26 23:55:15,801 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=silent , complete_position=-1, is_async=1
2018-11-26 23:55:15,860 DEBUG [71188] (deoplete.core) completion_begin (Async): 'silent '
2018-11-26 23:55:15,866 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=silent , complete_position=-1, is_async=0
2018-11-26 23:55:20,265 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:20,265 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:55:20,265 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:20,428 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:20,428 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:20,494 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:55:20,652 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:20,656 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:55:20,662 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:55:20,749 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:20,909 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:20,915 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'set'
2018-11-26 23:55:21,076 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=set, complete_position=-1, is_async=1
2018-11-26 23:55:21,084 DEBUG [71188] (deoplete.core) completion_begin (Async): 'set'
2018-11-26 23:55:21,092 DEBUG [71188] (deoplete.core) do_complete (Async): 34 candidates, input=set, complete_position=0, is_async=0
2018-11-26 23:55:29,588 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:29,588 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:55:29,588 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:29,752 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:29,753 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:29,812 DEBUG [71188] (deoplete.core) completion_begin (Async): ''
2018-11-26 23:55:29,819 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=, complete_position=-1, is_async=0
2018-11-26 23:55:30,504 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'k'
2018-11-26 23:55:30,666 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=k, complete_position=-1, is_async=1
2018-11-26 23:55:30,723 DEBUG [71188] (deoplete.core) completion_begin (Async): 'k'
2018-11-26 23:55:30,729 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=k, complete_position=-1, is_async=0
2018-11-26 23:55:31,009 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:31,179 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:31,506 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:31,713 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:31,876 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:31,934 DEBUG [71188] (deoplete.core) completion_begin (Async): 's'
2018-11-26 23:55:31,940 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=s, complete_position=-1, is_async=0
2018-11-26 23:55:33,776 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'se'
2018-11-26 23:55:33,938 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=se, complete_position=-1, is_async=1
2018-11-26 23:55:33,996 DEBUG [71188] (deoplete.core) completion_begin (Async): 'se'
2018-11-26 23:55:34,003 DEBUG [71188] (deoplete.core) do_complete (Async): 89 candidates, input=se, complete_position=0, is_async=0
2018-11-26 23:55:36,931 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:37,095 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:37,155 DEBUG [71188] (deoplete.core) completion_begin (Async): 's'
2018-11-26 23:55:37,161 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=s, complete_position=-1, is_async=0
2018-11-26 23:55:37,208 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'so'
2018-11-26 23:55:37,373 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=so, complete_position=-1, is_async=1
2018-11-26 23:55:37,377 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'sou'
2018-11-26 23:55:37,536 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=sou, complete_position=-1, is_async=1
2018-11-26 23:55:37,541 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sou'
2018-11-26 23:55:37,548 DEBUG [71188] (deoplete.core) do_complete (Async): 8 candidates, input=sou, complete_position=0, is_async=0
2018-11-26 23:55:38,611 DEBUG [71188] (deoplete.core) completion_begin (TextChangedP): 'sour'
2018-11-26 23:55:38,766 DEBUG [71188] (deoplete.core) do_complete (TextChangedP): 0 candidates, input=sour, complete_position=-1, is_async=1
2018-11-26 23:55:38,820 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sour'
2018-11-26 23:55:38,822 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=sour, complete_position=0, is_async=0
2018-11-26 23:55:39,299 DEBUG [71188] (deoplete.core) completion_begin (TextChangedP): 'sourc'
2018-11-26 23:55:39,456 DEBUG [71188] (deoplete.core) do_complete (TextChangedP): 0 candidates, input=sourc, complete_position=-1, is_async=1
2018-11-26 23:55:39,510 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sourc'
2018-11-26 23:55:39,512 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=sourc, complete_position=0, is_async=0
2018-11-26 23:55:40,385 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'sour'
2018-11-26 23:55:40,547 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=sour, complete_position=-1, is_async=1
2018-11-26 23:55:40,602 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sour'
2018-11-26 23:55:40,607 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=sour, complete_position=0, is_async=0
2018-11-26 23:55:40,817 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'sou'
2018-11-26 23:55:40,980 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=sou, complete_position=-1, is_async=1
2018-11-26 23:55:41,038 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sou'
2018-11-26 23:55:41,043 DEBUG [71188] (deoplete.core) do_complete (Async): 8 candidates, input=sou, complete_position=0, is_async=0
2018-11-26 23:55:41,481 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'so'
2018-11-26 23:55:41,648 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=so, complete_position=-1, is_async=1
2018-11-26 23:55:41,707 DEBUG [71188] (deoplete.core) completion_begin (Async): 'so'
2018-11-26 23:55:41,714 DEBUG [71188] (deoplete.core) do_complete (Async): 43 candidates, input=so, complete_position=0, is_async=0
2018-11-26 23:55:42,564 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:42,732 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:42,792 DEBUG [71188] (deoplete.core) completion_begin (Async): 's'
2018-11-26 23:55:42,797 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=s, complete_position=-1, is_async=0
2018-11-26 23:55:43,704 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'ss'
2018-11-26 23:55:43,866 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=ss, complete_position=-1, is_async=1
2018-11-26 23:55:43,924 DEBUG [71188] (deoplete.core) completion_begin (Async): 'ss'
2018-11-26 23:55:43,930 DEBUG [71188] (deoplete.core) do_complete (Async): 37 candidates, input=ss, complete_position=0, is_async=0
2018-11-26 23:55:44,933 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 's'
2018-11-26 23:55:45,098 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=s, complete_position=-1, is_async=1
2018-11-26 23:55:45,149 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'so'
2018-11-26 23:55:45,312 DEBUG [71188] (deoplete.core) completion_begin (Async): 'so'
2018-11-26 23:55:45,314 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=so, complete_position=-1, is_async=1
2018-11-26 23:55:45,471 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=so, complete_position=-1, is_async=1
2018-11-26 23:55:45,472 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sou'
2018-11-26 23:55:45,473 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'sou'
2018-11-26 23:55:45,474 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sou'
2018-11-26 23:55:45,480 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=sou, complete_position=-1, is_async=0
2018-11-26 23:55:45,480 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=sou, complete_position=-1, is_async=0
2018-11-26 23:55:45,481 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=sou, complete_position=-1, is_async=0
2018-11-26 23:55:46,400 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'sour'
2018-11-26 23:55:46,562 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=sour, complete_position=-1, is_async=1
2018-11-26 23:55:46,620 DEBUG [71188] (deoplete.core) completion_begin (Async): 'sour'
2018-11-26 23:55:46,626 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=sour, complete_position=0, is_async=0
2018-11-26 23:55:50,503 DEBUG [71188] (deoplete.core) on_event: BufWritePost
2018-11-26 23:55:52,252 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:52,252 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:55:52,253 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:52,421 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:52,422 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:52,425 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:52,582 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:52,586 DEBUG [71188] (deoplete.core) completion_begin (Async): 'd'
2018-11-26 23:55:52,587 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:55:52,588 DEBUG [71188] (deoplete.core) completion_begin (Async): 'd'
2018-11-26 23:55:52,756 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:55:52,756 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:55:52,757 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:55:52,760 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:55:52,761 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:55:52,762 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:55:52,763 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:55:52,922 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:52,922 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:52,922 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:52,922 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:52,926 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:55:52,933 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=div, complete_position=0, is_async=0
2018-11-26 23:55:55,939 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:55:55,939 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:55:55,940 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:55:56,102 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:56,102 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:55:56,106 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:55:56,269 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:55:56,272 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:55:56,273 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:55:56,274 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:55:56,435 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:55:56,435 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:55:56,435 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:55:56,440 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:55:56,441 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:55:56,606 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:56,607 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:55:56,612 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:55:56,618 DEBUG [71188] (deoplete.core) do_complete (Async): 3 candidates, input=div, complete_position=0, is_async=0
2018-11-26 23:55:57,304 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>'
2018-11-26 23:55:57,468 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>, complete_position=-1, is_async=1
2018-11-26 23:55:57,503 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>p'
2018-11-26 23:55:57,660 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>p, complete_position=-1, is_async=1
2018-11-26 23:55:57,664 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div>p'
2018-11-26 23:55:57,671 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div>p, complete_position=-1, is_async=0
2018-11-26 23:55:57,963 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ' <p>'
2018-11-26 23:55:58,122 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input= <p>, complete_position=-1, is_async=1
2018-11-26 23:55:58,178 DEBUG [71188] (deoplete.core) completion_begin (Async): ' <p>'
2018-11-26 23:55:58,183 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input= <p>, complete_position=-1, is_async=0
2018-11-26 23:56:01,074 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:56:01,074 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:56:01,075 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:56:01,235 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:56:01,235 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:56:01,239 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:56:01,403 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:56:01,407 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:56:01,408 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:56:01,409 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:56:01,566 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:01,566 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:01,567 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:01,571 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:56:01,572 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:56:01,739 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:56:01,739 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=1
2018-11-26 23:56:01,744 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:56:01,751 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div, complete_position=-1, is_async=0
2018-11-26 23:56:01,824 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>'
2018-11-26 23:56:01,983 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>, complete_position=-1, is_async=1
2018-11-26 23:56:02,042 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div>'
2018-11-26 23:56:02,048 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div>, complete_position=-1, is_async=0
2018-11-26 23:56:02,176 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>3'
2018-11-26 23:56:02,340 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>3, complete_position=-1, is_async=1
2018-11-26 23:56:02,398 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div>3'
2018-11-26 23:56:02,404 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=div>3, complete_position=-1, is_async=0
2018-11-26 23:56:02,510 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>3*'
2018-11-26 23:56:02,676 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>3*, complete_position=-1, is_async=1
2018-11-26 23:56:02,680 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div>3*p'
2018-11-26 23:56:02,867 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div>3*p, complete_position=-1, is_async=1
2018-11-26 23:56:02,870 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:56:02,872 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): '<div>'
2018-11-26 23:56:03,031 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:56:03,032 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=<div>, complete_position=-1, is_async=1
2018-11-26 23:56:03,037 DEBUG [71188] (deoplete.core) completion_begin (Async): '<div>'
2018-11-26 23:56:03,043 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=<div>, complete_position=-1, is_async=0
2018-11-26 23:56:06,442 DEBUG [71188] (deoplete.core) on_event: InsertEnter
2018-11-26 23:56:06,442 DEBUG [71188] (deoplete.core) completion_begin (InsertEnter): ''
2018-11-26 23:56:06,442 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): ''
2018-11-26 23:56:06,603 DEBUG [71188] (deoplete.core) do_complete (InsertEnter): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:56:06,604 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=, complete_position=-1, is_async=1
2018-11-26 23:56:06,608 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'd'
2018-11-26 23:56:06,765 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=d, complete_position=-1, is_async=1
2018-11-26 23:56:06,768 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:56:06,769 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'di'
2018-11-26 23:56:06,770 DEBUG [71188] (deoplete.core) completion_begin (Async): 'di'
2018-11-26 23:56:06,934 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:06,934 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:06,934 DEBUG [71188] (deoplete.core) do_complete (Async): 0 candidates, input=di, complete_position=-1, is_async=1
2018-11-26 23:56:06,940 DEBUG [71188] (deoplete.core) completion_begin (TextChangedI): 'div'
2018-11-26 23:56:06,941 DEBUG [71188] (deoplete.core) completion_begin (Async): 'div'
2018-11-26 23:56:07,100 DEBUG [71188] (deoplete.core) do_complete (TextChangedI): 0 candidates, input=div, complete_position=-1, is_async=1