-
-
Notifications
You must be signed in to change notification settings - Fork 959
/
Copy pathcoc-config.txt
1848 lines (1067 loc) · 53.6 KB
/
coc-config.txt
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
*coc-config.txt* NodeJS client for Vim & Neovim.
CONTENTS
Call hierarchy |coc-config-callHierarchy|
CodeLens |coc-config-codeLens|
Colors |coc-config-colors|
Completion |coc-config-suggest|
Cursors |coc-config-cursors|
Diagnostics |coc-config-diagnostic|
Dialog |coc-config-dialog|
Document highlight |coc-config-documentHighlight|
Float factory |coc-config-floatFactory|
Hover |coc-config-hover|
Http |coc-config-http|
Inlay hint |coc-config-inlayHint|
Links |coc-config-links|
List |coc-config-list|
Notification |coc-config-notification|
Npm |coc-config-npm|
Outline |coc-config-outline|
Pull diagnostics |coc-config-pullDiagnostic|
Refactor |coc-config-refactor|
Semantic tokens |coc-config-semanticTokens|
Signature |coc-config-signature|
Tree |coc-config-tree|
Type hierarchy |coc-config-typeHierarchy|
Workspace |coc-config-workspace|
Preferences |coc-config-preferences|
Float |coc-config-float|
Language server |coc-config-languageserver|
==============================================================================
BUILTIN CONFIGURATIONS *coc-config*
Builtin configurations of coc.nvim, it's recommended to use `coc-json`
extension for completion and validation support.
------------------------------------------------------------------------------
CallHierarchy~
*coc-config-callHierarchy*
"callHierarchy.enableTooltip" *coc-config-callHierarchy-enableTooltip*
Enable tooltip to show relative filepath of call hierarchy item.
Scope: `application`, default: `true`
"callHierarchy.openCommand" *coc-config-callHierarchy-openCommand*
Open command for call hierarchy tree view.
Scope: `application`, default: `"edit"`
"callHierarchy.splitCommand" *coc-config-callHierarchy-splitCommand*
Window split command used by call hierarchy tree view.
Scope: `application`, default: `"botright 30vs"`
------------------------------------------------------------------------------
CodeLens~
*coc-config-codeLens*
"codeLens.enable" *coc-config-codeLens-enable*
Enable codeLens feature, require neovim with set virtual text feature.
Scope: `language-overridable`, default: `false`
"codeLens.display" *coc-config-codeLens-display*
Display codeLens. Toggle with :CocCommand document.toggleCodeLens
Scope: `language-overridable`, default: `true`
"codeLens.position" *coc-config-codeLens-position*
Position of codeLens, requires nvim >= 0.6.0.
Scope: `resource`, default: `"top"`
"codeLens.separator" *coc-config-codeLens-separator*
Separator text for codeLens in virtual text.
Scope: `resource`, default: `""`
"codeLens.subseparator" *coc-config-codeLens-subseparator*
Subseparator between codeLenses in virtual text.
Scope: `resource`, default: `" | "`
------------------------------------------------------------------------------
Colors~
*coc-config-colors*
"colors.enable" *coc-config-colors-enable*
Enable colors highlight feature, for terminal vim, 'termguicolors'
option should be enabled and the terminal support gui colors.
Scope: `language-overridable`, default: `false`
"colors.highlightPriority" *coc-config-colors-highlightPriority*
Priority for colors highlights, works on vim8 and neovim >= 0.6.0.
Scope: `application`, default: `1000`
------------------------------------------------------------------------------
Cursors~
*coc-config-cursors*
"cursors.cancelKey" *coc-config-cursors-cancelKey*
Key used for cancel cursors session.
Scope: `application`, default: `"<esc>"`
"cursors.nextKey" *coc-config-cursors-nextKey*
Key used for jump to next cursors position.
Scope: `application`, default: `"<C-n>"`
"cursors.previousKey" *coc-config-cursors-previousKey*
Key used for jump to previous cursors position.
Scope: `application`, default: `"<C-p>"`
"cursors.wrapscan" *coc-config-cursors-wrapscan*
Searches wrap around the first or last cursors range.
Scope: `application`, default: `true`
------------------------------------------------------------------------------
Diagnostic~
*coc-config-diagnostic*
"diagnostic.autoRefresh" *coc-config-diagnostic-autoRefresh*
Enable automatically refresh diagnostics, use diagnosticRefresh action
when it's disabled.
Scope: `language-overridable`, default: `true`
"diagnostic.checkCurrentLine" *coc-config-diagnostic-checkCurrentLine*
When enabled, show all diagnostics of current line if there are none at
the current position.
Scope: `language-overridable`, default: `false`
"diagnostic.displayByAle" *coc-config-diagnostic-displayByAle*
Use Ale, coc-diagnostics-shim.nvim, or other provider to display
diagnostics in vim. This setting will disable diagnostic display using
coc's handler. A restart required on change.
Scope: `language-overridable`, default: `false`
"diagnostic.enable" *coc-config-diagnostic-enable*
Set to false to disable diagnostic display.
Scope: `language-overridable`, default: `true`
"diagnostic.enableHighlightLineNumber" *coc-config-diagnostic-enableHighlightLineNumber*
Enable highlighting line numbers for diagnostics, only works with neovim.
Scope: `application`, default: `true`
"diagnostic.enableMessage" *coc-config-diagnostic-enableMessage*
When to enable show messages of diagnostics.
Scope: `application`, default: `"always"`
"diagnostic.enableSign" *coc-config-diagnostic-enableSign*
Enable signs for diagnostics.
Scope: `language-overridable`, default: `true`
"diagnostic.errorSign" *coc-config-diagnostic-errorSign*
Text of error sign.
Scope: `application`, default: `">>"`
"diagnostic.filetypeMap" *coc-config-diagnostic-filetypeMap*
A map between buffer filetype and the filetype assigned to diagnostics.
To syntax highlight diagnostics with their parent buffer type use `"
default": "bufferType"`.
Scope: `application`, default: `{}`
"diagnostic.floatConfig" *coc-config-diagnostic-floatConfig*
Configuration of floating window/popup for diagnostic messages, see
|coc-config-float|.
Scope: `application`, default: `null`
"diagnostic.format" *coc-config-diagnostic-format*
Define the diagnostic format that shown in float window or echoed,
available parts: source, code, severity, message.
Scope: `language-overridable`, default: `"%message (%source%code)"`
"diagnostic.highlightLimit" *coc-config-diagnostic-highlightLimit*
Limit count for highlighted diagnostics, too many diagnostic highlights
could make vim stop responding.
Scope: `language-overridable`, default: `1000`
"diagnostic.highlightPriority" *coc-config-diagnostic-highlightPriority*
Priority for diagnostic highlights, works on vim8 and neovim >= 0.6.0.
Scope: `language-overridable`, default: `4096`
"diagnostic.hintSign" *coc-config-diagnostic-hintSign*
Text of hint sign.
Scope: `application`, default: `">>"`
"diagnostic.infoSign" *coc-config-diagnostic-infoSign*
Text of info sign.
Scope: `application`, default: `">>"`
"diagnostic.level" *coc-config-diagnostic-level*
Used for filter diagnostics by diagnostic severity.
Scope: `resource`, default: `"hint"`
"diagnostic.locationlistLevel" *coc-config-diagnostic-locationlistLevel*
Filter diagnostics in locationlist.
Scope: `language-overridable`, default: `null`
"diagnostic.locationlistUpdate" *coc-config-diagnostic-locationlistUpdate*
Update locationlist on diagnostics change, only works with locationlist
opened by :CocDiagnostics command and first window of associated buffer.
Scope: `language-overridable`, default: `true`
"diagnostic.messageDelay" *coc-config-diagnostic-messageDelay*
How long to wait (in milliseconds) before displaying the diagnostic
message with echo or float
Scope: `application`, default: `200`
"diagnostic.messageLevel" *coc-config-diagnostic-messageLevel*
Filter diagnostic message in float window/popup.
Scope: `language-overridable`, default: `null`
"diagnostic.messageTarget" *coc-config-diagnostic-messageTarget*
Diagnostic message target.
Scope: `language-overridable`, default: `"float"`
"diagnostic.refreshOnInsertMode" *coc-config-diagnostic-refreshOnInsertMode*
Enable diagnostic refresh on insert mode, default false.
Scope: `language-overridable`, default: `false`
"diagnostic.showDeprecated" *coc-config-diagnostic-showDeprecated*
Show diagnostics with deprecated tag.
Scope: `language-overridable`, default: `true`
"diagnostic.showUnused" *coc-config-diagnostic-showUnused*
Show diagnostics with unused tag, affects highlight, sign, virtual
text , message.
Scope: `language-overridable`, default: `true`
"diagnostic.signLevel" *coc-config-diagnostic-signLevel*
Filter diagnostics displayed in signcolumn.
Scope: `language-overridable`, default: `null`
"diagnostic.signPriority" *coc-config-diagnostic-signPriority*
Priority of diagnostic signs.
Scope: `resource`, default: `10`
"diagnostic.virtualText" *coc-config-diagnostic-virtualText*
Use virtual text to display diagnostics.
Scope: `language-overridable`, default: `false`
"diagnostic.virtualTextAlign" *coc-config-diagnostic-virtualTextAlign*
Position of virtual text. Vim9 only.
Scope: `language-overridable`, default: `"after"`
"diagnostic.virtualTextCurrentLineOnly" *coc-config-diagnostic-virtualTextCurrentLineOnly*
Only show virtualText diagnostic on current cursor line.
Scope: `language-overridable`, default: `true`
"diagnostic.virtualTextFormat" *coc-config-diagnostic-virtualTextFormat*
Define the virtual text diagnostic format, available parts: source, code
, severity, message.
Scope: `language-overridable`, default: `"%message"`
"diagnostic.virtualTextLevel" *coc-config-diagnostic-virtualTextLevel*
Filter diagnostic message in virtual text by level.
Scope: `language-overridable`, default: `null`
"diagnostic.virtualTextLimitInOneLine" *coc-config-diagnostic-virtualTextLimitInOneLine*
The maximum number of diagnostic messages to disaply in one line.
Scope: `language-overridable`, default: `999`
"diagnostic.virtualTextLineSeparator" *coc-config-diagnostic-virtualTextLineSeparator*
The text that will mark a line end from the diagnostic message.
Scope: `language-overridable`, default: `" \ "`
"diagnostic.virtualTextLines" *coc-config-diagnostic-virtualTextLines*
The number of non empty lines from a diagnostic to display.
Scope: `language-overridable`, default: `3`
"diagnostic.virtualTextPrefix" *coc-config-diagnostic-virtualTextPrefix*
The prefix added virtual text diagnostics.
Scope: `language-overridable`, default: `" "`
"diagnostic.virtualTextWinCol" *coc-config-diagnostic-virtualTextWinCol*
Window column number to align virtual text, neovim only.
Scope: `language-overridable`, default: `null`
"diagnostic.warningSign" *coc-config-diagnostic-warningSign*
Text of warning sign.
Scope: `application`, default: `"⚠"`
"diagnostic.showRelatedInformation" *coc-config-diagnostic-showRelatedInformation*
Display related information in the diagnostic floating window.
Scope: `language-overridable`, default: `true`
------------------------------------------------------------------------------
Dialog~
*coc-config-dialog*
"dialog.confirmKey" *coc-config-dialog-confirmKey*
Confirm key for confirm selection used by menu and picker, you can
always use <esc> to cancel.
Scope: `application`, default: `"<cr>"`
"dialog.floatBorderHighlight" *coc-config-dialog-floatBorderHighlight*
Highlight group for border of dialog window/popup, use 'CocFloating'
when not specified.
Scope: `application`, default: `null`
"dialog.floatHighlight" *coc-config-dialog-floatHighlight*
Highlight group for dialog window/popup, use 'CocFloating' when not
specified.
Scope: `application`, default: `null`
"dialog.maxHeight" *coc-config-dialog-maxHeight*
Maximum height of dialog window, for quickpick, it's content window's
height.
Scope: `application`, default: `30`
"dialog.maxWidth" *coc-config-dialog-maxWidth*
Maximum width of dialog window.
Scope: `application`, default: `80`
"dialog.pickerButtonShortcut" *coc-config-dialog-pickerButtonShortcut*
Show shortcut in buttons of picker dialog window/popup, used when dialog
.pickerButtons is true.
Scope: `application`, default: `true`
"dialog.pickerButtons" *coc-config-dialog-pickerButtons*
Show buttons for picker dialog window/popup.
Scope: `application`, default: `true`
"dialog.rounded" *coc-config-dialog-rounded*
use rounded border for dialog window.
Scope: `application`, default: `true`
"dialog.shortcutHighlight" *coc-config-dialog-shortcutHighlight*
Highlight group for shortcut character in menu dialog.
Scope: `application`, default: `"MoreMsg"`
------------------------------------------------------------------------------
DocumentHighlight~
*coc-config-documentHighlight*
"documentHighlight.priority" *coc-config-documentHighlight-priority*
Match priority used by document highlight, see ':h matchadd'.
Scope: `resource`, default: `-1`
"documentHighlight.limit" *coc-config-documentHighlight-limit*
Limit the highlights added by matchaddpos, too many positions could
cause vim slow.
Scope: `resource`, default: `100`
"documentHighlight.timeout" *coc-config-documentHighlight-timeout*
Timeout for document highlight, in milliseconds.
Scope: `resource`, default: `300`
------------------------------------------------------------------------------
FloatFactory~
*coc-config-floatFactory*
"floatFactory.floatConfig" *coc-config-floatFactory-floatConfig*
Configure default float window/popup style created by float factory
(created around cursor and automatically closed), properties of
|coc-config-float| are used.
Scope: `application`, default: `null`
------------------------------------------------------------------------------
Hover~
*coc-config-hover*
"hover.autoHide" *coc-config-hover-autoHide*
Automatically hide hover float window on CursorMove or InsertEnter.
Scope: `application`, default: `true`
"hover.floatConfig" *coc-config-hover-floatConfig*
Configuration of floating window/popup for hover documents, see
|coc-config-float|.
Scope: `application`, default: `null`
"hover.previewMaxHeight" *coc-config-hover-previewMaxHeight*
Max height of preview window for hover.
Scope: `resource`, default: `12`
"hover.target" *coc-config-hover-target*
Target to show hover information, could be `float`, `echo` or
`preview`.
Scope: `resource`, default: `float`
------------------------------------------------------------------------------
Http proxy~
*coc-config-http*
"http.proxy" *coc-config-http-proxy*
The proxy setting to use. If not set, will be inherited from the `
http_proxy` and `https_proxy` environment variables.
Scope: `application`, default: `""`
"http.proxyAuthorization" *coc-config-http-proxyAuthorization*
The value to send as the `Proxy-Authorization` header for every network
request.
Scope: `application`, default: `null`
"http.proxyCA" *coc-config-http-proxyCA*
CA (file) to use as Certificate Authority>
Scope: `application`, default: `null`
"http.proxyStrictSSL" *coc-config-http-proxyStrictSSL*
Controls whether the proxy server certificate should be verified
against the list of supplied CAs.
Scope: `application`, default: `true`
------------------------------------------------------------------------------
InlayHint~
*coc-config-inlayHint*
"inlayHint.enable" *coc-config-inlayHint-enable*
Enable inlay hint support.
Scope: `language-overridable`, default: `true`
"inlayHint.enableParameter" *coc-config-inlayHint-enableParameter*
Enable inlay hints for parameters.
Scope: `language-overridable`, default: `true`
"inlayHint.display" *coc-config-inlayHint-display*
Display inlay hints. Toggle with :CocCommand document.toggleInlayHint
Scope: `language-overridable`, default: `true`
"inlayHint.refreshOnInsertMode" *coc-config-inlayHint-refreshOnInsertMode*
Refresh inlayHints on insert mode.
Scope: `language-overridable`, default: `false`
"inlayHint.position" *coc-config-inlayHint-position*
Controls the position of inlay hint, supports `inline` and `eol`.
Scope: `language-overridable`, default: `inline`
------------------------------------------------------------------------------
Links~
*coc-config-links*
"links.enable" *coc-config-links-enable*
Enable document links.
Scope: `language-overridable`, default: `true`
"links.highlight" *coc-config-links-highlight*
Use CocLink highlight group to highlight links.
Scope: `application`, default: `false`
"links.tooltip" *coc-config-links-tooltip*
Show tooltip of link under cursor on CursorHold.
Scope: `application`, default: `false`
------------------------------------------------------------------------------
List~
*coc-config-list*
"list.alignColumns" *coc-config-list-alignColumns*
Whether to align lists in columns.
Scope: `application`, default: `false`
"list.extendedSearchMode" *coc-config-list-extendedSearchMode*
Enable extended search mode which allows multiple search patterns
delimited by spaces.
Scope: `application`, default: `true`
"list.floatPreview" *coc-config-list-floatPreview*
Enable preview with float window/popup, default: `false`.
Scope: `application`, default: `false`
"list.height" *coc-config-list-height*
Height of split list window.
Scope: `application`, default: `10`
"list.indicator" *coc-config-list-indicator*
The character used as first character in prompt line.
Scope: `application`, default: `">"`
"list.insertMappings" *coc-config-list-insertMappings*
Custom keymappings on insert mode.
Scope: `application`, default: `{}`
"list.interactiveDebounceTime" *coc-config-list-interactiveDebounceTime*
Debounce time for input change on interactive mode.
Scope: `application`, default: `100`
"list.limitLines" *coc-config-list-limitLines*
Limit lines for list buffer.
Scope: `application`, default: `null`
"list.maxPreviewHeight" *coc-config-list-maxPreviewHeight*
Max height for preview window of list.
Scope: `application`, default: `12`
"list.menuAction" *coc-config-list-menuAction*
Use menu picker instead of confirm() for choose action.
Scope: `application`, default: `false`
"list.nextKeymap" *coc-config-list-nextKeymap*
Key used for select next line on insert mode.
Scope: `application`, default: `"<C-j>"`
"list.normalMappings" *coc-config-list-normalMappings*
Custom keymappings on normal mode.
Scope: `application`, default: `{}`
"list.previewHighlightGroup" *coc-config-list-previewHighlightGroup*
Highlight group used for highlight the range in preview window.
Scope: `application`, default: `"Search"`
"list.previewSplitRight" *coc-config-list-previewSplitRight*
Use vsplit for preview window.
Scope: `application`, default: `false`
"list.previewToplineOffset" *coc-config-list-previewToplineOffset*
Topline offset for list previews
Scope: `application`, default: `3`
"list.previewToplineStyle" *coc-config-list-previewToplineStyle*
Topline style for list previews, could be "offset" or "middle".
Scope: `application`, default: `"offset"`
"list.previousKeymap" *coc-config-list-previousKeymap*
Key used for select previous line on insert mode.
Scope: `application`, default: `"<C-k>"`
"list.selectedSignText" *coc-config-list-selectedSignText*
Sign text for selected lines.
Scope: `application`, default: `"*"`
"list.signOffset" *coc-config-list-signOffset*
Sign offset of list, should be different from other plugins.
Scope: `application`, default: `900`
"list.smartCase" *coc-config-list-smartCase*
Use smartcase match for fuzzy match and strict match, --ignore-case
will be ignored, may not affect interactive list.
Scope: `application`, default: `false`
"list.source.diagnostics.includeCode" *coc-config-list-source-diagnostics-includeCode*
Whether to show the diagnostic code in the list.
Scope: `application`, default: `true`
"list.source.diagnostics.pathFormat" *coc-config-list-source-diagnostics-pathFormat*
Decide how the filepath is shown in the list.
Scope: `application`, default: `"full"`
"list.source.outline.ctagsFiletypes" *coc-config-list-source-outline-ctagsFiletypes*
Filetypes that should use ctags for outline instead of language server.
Scope: `application`, default: `[]`
"list.source.symbols.excludes" *coc-config-list-source-symbols-excludes*
Patterns of minimatch for filepath to exclude from symbols list.
Scope: `application`, default: `[]`
"list.statusLineSegments" *coc-config-list-statusLineSegments*
An array of statusline segments that will be used to draw the status
line for list windows.
Scope: `application`.
------------------------------------------------------------------------------
Notification~
*coc-config-notification*
"notification.border" *coc-config-notification-border*
Enable rounded border for notification windows.
Scope: `application`, default: `true`
"notification.disabledProgressSources" *coc-config-notification-disabledProgressSources*
Sources that should be disabled for message progress, use * to disable
all progresses.
Scope: `application`, default: `[]`
"notification.focusable" *coc-config-notification-focusable*
Enable focus by user actions (wincmds, mouse events), neovim only.
Scope: `application`, default: `true`
"notification.highlightGroup" *coc-config-notification-highlightGroup*
Highlight group of notification dialog.
Scope: `application`, default: `"Normal"`
"notification.marginRight" *coc-config-notification-marginRight*
Margin right to the right of editor window.
Scope: `application`, default: `10`
"notification.maxHeight" *coc-config-notification-maxHeight*
Maximum content height of notification dialog.
Scope: `application`, default: `10`
"notification.maxWidth" *coc-config-notification-maxWidth*
Maximum content width of notification dialog.
Scope: `application`, default: `60`
"notification.minProgressWidth" *coc-config-notification-minProgressWidth*
Minimal with of progress notification.
Scope: `application`, default: `30`
"notification.statusLineProgress" *coc-config-notification-statusLineProgress*
Show progress notification in status line, instead of use float
window/popup.
"notification.timeout" *coc-config-notification-timeout*
Timeout for auto close notifications, in milliseconds.
Scope: `application`, default: `10000`
"notification.winblend" *coc-config-notification-winblend*
Winblend option of notification window, neovim only.
Scope: `application`, default: `30`
------------------------------------------------------------------------------
Npm~
*coc-config-npm*
"npm.binPath" *coc-config-npm-binPath*
Command or absolute path to npm or yarn for global extension
install/uninstall.
Scope: `application`, default: `"npm"`
------------------------------------------------------------------------------
Outline~
*coc-config-outline*
"outline.autoPreview" *coc-config-outline-autoPreview*
Enable auto preview on cursor move.
Scope: `application`, default: `false`
"outline.autoHide" *coc-config-outline-autoHide*
Automatically hide the outline window when an item is clicked.
Scope: `application`, default: `false`
"outline.autoWidth" *coc-config-outline-autoWidth*
Automatically increase window width to avoid wrapped lines.
Scope: `application`, default: `true`
"outline.checkBufferSwitch" *coc-config-outline-checkBufferSwitch*
Recreate outline view after user changed to another buffer on current
tab.
Scope: `application`, default: `true`
"outline.codeActionKinds" *coc-config-outline-codeActionKinds*
Filter code actions in actions menu by kinds.
Scope: `application`, default: `["","quickfix","refactor"]`
"outline.detailAsDescription" *coc-config-outline-detailAsDescription*
Show detail as description aside with label, when false detail will be
shown in tooltip on cursor hold.
Scope: `application`, default: `true`
"outline.expandLevel" *coc-config-outline-expandLevel*
Expand level of tree nodes.
Scope: `application`, default: `1`
"outline.followCursor" *coc-config-outline-followCursor*
Reveal item in outline tree on cursor hold.
Scope: `application`, default: `true`
"outline.keepWindow" *coc-config-outline-keepWindow*
Jump back to original window after outline is shown.
Scope: `application`, default: `false`
"outline.previewBorder" *coc-config-outline-previewBorder*
Use border for preview window.
Scope: `application`, default: `true`
"outline.previewBorderHighlightGroup" *coc-config-outline-previewBorderHighlightGroup*
Border highlight group of preview window.
Scope: `application`, default: `"Normal"`
"outline.previewBorderRounded" *coc-config-outline-previewBorderRounded*
Use rounded border for preview window.
Scope: `application`, default: `false`
"outline.previewHighlightGroup" *coc-config-outline-previewHighlightGroup*
Highlight group of preview window.
Scope: `application`, default: `"Normal"`
"outline.previewMaxWidth" *coc-config-outline-previewMaxWidth*
Max width of preview window.
Scope: `application`, default: `80`
"outline.previewWinblend" *coc-config-outline-previewWinblend*
Enables pseudo-transparency by set 'winblend' option of window, neovim
only.
Scope: `application`, default: `0`
"outline.showLineNumber" *coc-config-outline-showLineNumber*
Show line number of symbols.
Scope: `application`, default: `true`
"outline.sortBy" *coc-config-outline-sortBy*
Default sort method for symbols outline.
Scope: `application`, default: `"category"`
"outline.splitCommand" *coc-config-outline-splitCommand*
Window split command used by outline.
Scope: `application`, default: `"botright 30vs"`
"outline.switchSortKey" *coc-config-outline-switchSortKey*
The key used to switch sort method for symbols provider of current
tree view.
Scope: `application`, default: `"<C-s>"`
"outline.togglePreviewKey" *coc-config-outline-togglePreviewKey*
The key used to toggle auto preview feature.
Scope: `application`, default: `"p"`
------------------------------------------------------------------------------
PullDiagnostic~
*coc-config-pullDiagnostic*
"pullDiagnostic.ignored" *coc-config-pullDiagnostic-ignored*
Minimatch patterns to match full filepath that should be ignored for
pullDiagnostic.
Scope: `application`, default: `[]`
"pullDiagnostic.onChange" *coc-config-pullDiagnostic-onChange*
Whether to pull for diagnostics on document change.
Scope: `language-overridable`, default: `true`
"pullDiagnostic.onSave" *coc-config-pullDiagnostic-onSave*
Whether to pull for diagnostics on document save.
Scope: `language-overridable`, default: `false`
"pullDiagnostic.workspace" *coc-config-pullDiagnostic-workspace*
Whether to pull for workspace diagnostics when possible.
Scope: `application`, default: `true`
------------------------------------------------------------------------------
Refactor~
*coc-config-refactor*
"refactor.afterContext" *coc-config-refactor-afterContext*
Print num lines of trailing context after each match.
Scope: `application`, default: `3`
"refactor.beforeContext" *coc-config-refactor-beforeContext*
Print num lines of leading context before each match.
Scope: `application`, default: `3`
"refactor.openCommand" *coc-config-refactor-openCommand*
Open command for refactor window.
Scope: `application`, default: `"vsplit"`
"refactor.saveToFile" *coc-config-refactor-saveToFile*