-
Notifications
You must be signed in to change notification settings - Fork 273
/
LanguageClient.txt
1236 lines (862 loc) · 41.4 KB
/
LanguageClient.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
*LanguageClient.txt* Language Server Protocol support for vim and neovim *LanguageClient*
==============================================================================
CONTENTS *LanguageClientContents*
1. Usage ....................... |LanguageClientUsage|
2. Configuration ............... |LanguageClientConfiguration|
3. Commands .................... |LanguageClientCommands|
4. Functions ................... |LanguageClientFunctions|
5. Mappings .................... |LanguageClientMappings|
6. Events ...................... |LanguageClientEvents|
7. License ..................... |LanguageClientLicense|
8. Bugs ........................ |LanguageClientBugs|
9. Contributing ................ |LanguageClientContributing|
==============================================================================
1. Usage *LanguageClientUsage*
Before using LanguageClient, it is necessary to specify commands that are
going to be used to start a language server. See |LanguageClient_serverCommands|
for detail. Here is a simple example config: >
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
\ }
After that, open a file with one of the above filetypes, functionalities
provided by language servers should be available out of the box.
At this point, call any provided function as you like. See
|LanguageClientFunctions| for a complete list of functions. Usually one would
like to map these functions to shortcuts, for example: >
nnoremap <silent> K :call LanguageClient#textDocument_hover()<CR>
nnoremap <silent> gd :call LanguageClient#textDocument_definition()<CR>
nnoremap <silent> <F2> :call LanguageClient#textDocument_rename()<CR>
You can also use slightly cleaner Plug mappings instead of the full function name: >
nmap <silent> K <Plug>(lcn-hover)
nmap <silent> gd <Plug>(lcn-definition)
nmap <silent> <F2> <Plug>(lcn-rename)
You can apply these mappings only for buffers with supported filetypes with a
simple function: >
function LC_maps()
if has_key(g:LanguageClient_serverCommands, &filetype)
nmap <buffer> <silent> K <Plug>(lcn-hover)
nmap <buffer> <silent> gd <Plug>(lcn-definition)
nmap <buffer> <silent> <F2> <Plug>(lcn-rename)
endif
endfunction
autocmd FileType * call LC_maps()
If one is using deoplete/nvim-completion-manager at the same time, completion
should work out of the box. Otherwise, completion is available with 'C-X C-O'
('omnifunc').
Alternatively, set 'completefunc': >
set completefunc=LanguageClient#complete
<
If the language server supports, diagnostic/lint information will be displayed
via gutter and syntax highlighting with real time editing. At the same time,
that info is populated into the quickfix list (or location list), which can be
accessed by regular quickfix/location list operations.
To use the language server with Vim's formatting operator |gq|, set 'formatexpr': >
set formatexpr=LanguageClient#textDocument_rangeFormatting_sync()
<
==============================================================================
2. Configuration *LanguageClientConfiguration*
2.1 g:LanguageClient_serverCommands *g:LanguageClient_serverCommands*
Dictionary to specify the servers to be used for each filetype. The keys are
strings representing the filetypes and the values are either
1 - a list of strings that form a command
2 - a dictionary with keys name, command and initializationOptions, where:
- name: is the name of the server, which should match the root node of the
configuration options specified in the settings.json file for this server
- command: is the same list of strings in option 1
- initializationOptions: is an optional dictionary with options to be passed
to the server. The values to be set here are highly dependent on each
server so you should see the documentation for each server to find out
what to configure in here (if anything). The options set in
initializationOptions are merged with the default settings for each
language server and with the workspace settings defined by the user in
the files specified in the variable `LanguageClient_settingsPath'. The
order in which these settings are merged is first the defualt settings,
then the server settings configured in this section and lastly the
contents of the files in the `LanguageClient_settingsPath` variable in
the order in which they were listed.
For example: >
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
\ 'go': {
\ 'name': 'gopls',
\ 'command': ['gopls'],
\ 'initializationOptions': {
\ 'usePlaceholders': v:true,
\ 'codelens': {
\ 'generate': v:true,
\ 'test': v:true,
\ },
\ },
\ },
\}
In the configuration for the rust filetype above, 'run', 'stable', and 'rls'
are arguments to the 'rustup' command line tool. And in the configuration for
the go filetype the server is configured to run the command `gopls` with no
additional arguments, and with the initialization options set in the
`initializationOptions` key.
You can also use a tcp connection to the server, for example: >
let g:LanguageClient_serverCommands = {
\ 'javascript': ['tcp://127.0.0.1:2089'],
\ }
Note: environmental variables are not supported except home directory alias `~`.
Default: {}
Valid Option: Map<String, List<String> | {
name: String
command: List<String>
initializationOptions?: Map<String, Any>
}>
2.2 g:LanguageClient_diagnosticsDisplay *g:LanguageClient_diagnosticsDisplay*
Control how diagnostics messages are displayed.
Default: >
{
1: {
"name": "Error",
"texthl": "LanguageClientError",
"signText": "✖",
"signTexthl": "LanguageClientErrorSign",
"virtualTexthl": "Error",
},
2: {
"name": "Warning",
"texthl": "LanguageClientWarning",
"signText": "⚠",
"signTexthl": "LanguageClientWarningSign",
"virtualTexthl": "Todo",
},
3: {
"name": "Information",
"texthl": "LanguageClientInfo",
"signText": "ℹ",
"signTexthl": "LanguageClientInfoSign",
"virtualTexthl": "Todo",
},
4: {
"name": "Hint",
"texthl": "LanguageClientInfo",
"signText": "➤",
"signTexthl": "LanguageClientInfoSign",
"virtualTexthl": "Todo",
},
}
2.3 g:LanguageClient_diagnosticsSignsMax *g:LanguageClient_diagnosticsSignsMax*
Control how many diagnostics signs are displayed.
Default: v:null (Show all signs)
Valid options: v:null | number
2.4 g:LanguageClient_changeThrottle *g:LanguageClient_changeThrottle*
Interval in seconds during which textDocument_didChange is suppressed. For
example: >
let g:LanguageClient_changeThrottle = 0.5
This will make LanguageClient pause 0.5 second to send text changes to
server after one textDocument_didChange is sent.
Default: v:null (No throttling)
Valid options: v:null | number
2.5 g:LanguageClient_autoStart *g:LanguageClient_autoStart*
Whether to start language servers automatically when opening a file of
associated filetype.
Default: 1.
2.6 g:LanguageClient_autoStop *g:LanguageClient_autoStop*
Whether to stop language servers automatically when closing vim.
associated filetype.
Default: 1.
2.7 g:LanguageClient_selectionUI *g:LanguageClient_selectionUI*
Selection UI used when there are multiple entries.
Default: If fzf is loaded, use "fzf", otherwise use "location-list".
Valid options: "fzf" | "quickfix" | "location-list" | |Funcref|
If you use a |Funcref|, the referenced function should have two arguments
(source, sink). The "source" argument can be either a command string or a
list. The sink argument can be a command string or a |Funcref| that takes the
selected line as its first argument.
An example implementation is "s:FZF()" in autoload/LanguageClient.vim. For
details, see the source and sink arguments of fzf#run():
https://github.com/junegunn/fzf/blob/master/README-VIM.md#fzfrun
Another example, this time using vim-clap: >
function! MySelectionUI(source, sink) abort
return clap#run({'id': 'LCN', 'source': a:source, 'sink': a:sink})
endfunction
let g:LanguageClient_selectionUI = function('MySelectionUI')
2.7 g:LanguageClient_selectionUI_autoOpen *LanguageClient_selectionUI_autoOpen*
Selection UI auto open when selectionUI is not "fzf"
Default: 1
Valid options: 1 | 0
2.8 g:LanguageClient_trace *g:LanguageClient_trace*
Trace setting passed to server.
Default: "off"
Valid options: "off" | "messages" | "verbose"
2.9 g:LanguageClient_diagnosticsList *g:LanguageClient_diagnosticsList*
List used to fill diagnostic messages.
Default: "Quickfix"
Valid options: "Quickfix" | "Location" | "Disabled"
2.10 g:LanguageClient_diagnosticsEnable *g:LanguageClient_diagnosticsEnable*
Whether to handle diagnostic messages, including gutter, highlight and
quickfix/location list.
Default: 1
Valid options: 1 | 0
2.11 g:LanguageClient_windowLogMessageLevel *g:LanguageClient_windowLogMessageLevel*
Maximum MessageType to show messages from window/logMessage notifications.
Default: "Warning"
Valid options: "Error" | "Warning" | "Info" | "Log"
2.12 g:LanguageClient_settingsPath *g:LanguageClient_settingsPath*
Path for language server settings, or list of such paths. If not an absolute
path this is relative to the workspace directory. If several paths are
provided, then the corresponding settings are merged with precedence going to
the last file.
The initialization options found in the files in this config are combined with
the initialization options specified in the server command, if any. The former
taking precedence over the latter.
Note that the key under which the initialization options for each server lives
matches the key under which the server expects it's configuration. This is
important for servers that can request configuration via a
`workspace/configuration` request.
Previously, the initialization options lived under a `initializationOptions`
key, which worked, but made answering that `workspace/configuration` request
hard, since we couldn't really get the correct path to the setting the server
requested. Since version 0.1.161 of this plugin, that key has been deprecated
and you'll see a message saying that you should move off of it if your settings
file includes an `initializationOptions` key.
Example settings file content: >
{
"gopls": {
"usePlaceholders": true,
"local": "github.com/my/pkg",
},
"rust-analyzer": {
"inlayHints": {
"enable": true,
"chainingHints": true
},
},
}
Default: ".vim/settings.json"
2.13 g:LanguageClient_loadSettings *g:LanguageClient_loadSettings*
Whether to load language server settings.
Default: 1
Valid options: 1 | 0
2.14 g:LanguageClient_loggingFile *g:LanguageClient_loggingFile*
Log file location.
Default: null
Valid options: any valid path. Please note that `~` is not a valid path and you
need to `expand` it.
Example:
`let g:LanguageClient_loggingFile = expand('~/.vim/LanguageClient.log')`
2.15 g:LanguageClient_loggingLevel *g:LanguageClient_loggingLevel*
Logging level.
Default: 'WARN'
Valid options: 'DEBUG' | 'INFO' | 'WARN' | 'ERROR'
2.16 g:LanguageClient_serverStderr *g:LanguageClient_serverStderr*
Path for language server stderr.
Default: None
Valid options: any valid path.
2.17 g:LanguageClient_rootMarkers *g:LanguageClient_rootMarkers*
Customized project root markers. Generally a heuristic algorithm within this
plugin should be able to detect project root automatically. This option is
provided in case the algorithm failed.
Example setting 1. List of string array. Shell-like glob is supported. >
let g:LanguageClient_rootMarkers = ['.root', 'project.*']
Example setting 2. Map filetype to string array. >
let g:LanguageClient_rootMarkers = {
\ 'javascript': ['project.json'],
\ 'rust': ['Cargo.toml'],
\ }
Default: v:null
Valid option: Array<String> | Map<String, Array<String>>
2.18 g:LanguageClient_fzfOptions *g:LanguageClient_fzfOptions*
Customize fzf. Check fzf documentation for available options.
Default: v:null
Valid option: Array<String> | String
2.19 g:LanguageClient_hasSnippetSupport *g:LanguageClient_hasSnippetSupport*
Override detection of snippet support.
If this is not set, the language client will determine whether snippets are
supported by looking for installed plugins that are known to support them.
Set to 1 (or 0) to enable (or disable) snippet support, skipping the automatic
detection.
Valid options: 1 | 0
2.20 g:LanguageClient_waitOutputTimeout *g:LanguageClient_waitOutputTimeout*
Duration of time (in seconds) to wait for language server to return output
before timing out.
Default: 10
Valid options: number
2.21 g:LanguageClient_hoverPreview *g:LanguageClient_hoverPreview*
Controls how hover output is displayed. Must be one of the following:
Never - Never use preview window, always echo hover output
Auto - Use preview window for hover entries longer than one line (default)
Always - Always use preview window, never echo hover output
Default: "Auto"
Valid options: "Never", "Auto", "Always"
2.22 g:LanguageClient_selectionUIContextMenu *g:LanguageClient_selectionUIContextMenu* *g:LanguageClient_fzfContextMenu*
Should the selection UI be used for `LanguageClient_contextMenu()`.
(Alias for the deprecated `LanguageClient_fzfContextMenu`)
Default: 1
Valid options: 1 | 0
2.23 g:LanguageClient_completionPreferTextEdit
*g:LanguageClient_completionPreferTextEdit*
(Experimental) Should prefer use textEdit it is present in
CompletionItem.
Note: textEdit support requires vim >= v8.0.1493, or vim >= v8.1.0039, or
neovim >= 0.3.0.
Default: 0
Valid options: 1 | 0
2.24 g:LanguageClient_documentHighlightDisplay *g:LanguageClient_documentHighlightDisplay*
Control how document highlights are displayed.
Default: >
{
1: {
"name": "Text",
"texthl": "SpellCap",
},
2: {
"name": "Read",
"texthl": "SpellLocal",
},
3: {
"name": "Write",
"texthl": "SpellRare",
},
}
2.25 g:LanguageClient_useVirtualText *g:LanguageClient_useVirtualText*
Specify whether to use virtual text to display diagnostics.
Default: "All" whenever virtual text is supported.
Valid Options: "All" | "No" | "CodeLens" | "Diagnostics"
2.26 g:LanguageClient_useFloatingHover *g:LanguageClient_useFloatingHover*
When the value is set to 1, |LanguageClient#textDocument_hover()| opens
documentation in a floating window instead of preview.
This variable is effective only when the floating window feature is
supported. Check by running >
:echomsg exists('*nvim_open_win')
Default: 1 when a floating window is supported, otherwise 0
Valid Options: 1 | 0
2.27 g:LanguageClient_floatingHoverHighlight *g:LanguageClient_floatingHoverHighlight*
Control how floating window hover highlights are displayed.
Default: Normal:CursorLine
2.28 g:LanguageClient_usePopupHover *g:LanguageClient_usePopupHover*
When the value is set to 1, |LanguageClient#textDocument_hover()| opens
documentation in a popup window instead of preview.
This variable is effective only when the popup window feature is
supported, which is supported only in vim 8.2+. Check by running >
:echomsg has('popupwin')
Default: 1 when a popup window is supported, otherwise 0
Valid Options: 1 | 0
2.29 g:LanguageClient_virtualTextPrefix *g:LanguageClient_virtualTextPrefix*
When the value is set to a valid string and |g:LanguageClient_useVirtualText| is
enabled, all virtual text lines are prefixed with the defined string.
This variable is effective only when the virtual text feature is
supported.
Default: Empty string ('')
Valid Options: string
2.30 g:LanguageClient_diagnosticsMaxSeverity *g:LanguageClient_diagnosticsMaxSeverity*
Maximum severity to show diagnostic messages.
Default: "Hint"
Valid options: "Error" | "Warning" | "Information" | "Hint"
2.31 g:LanguageClient_diagnosticsIgnoreSources *g:LanguageClient_diagnosticsIgnoreSources*
Does not show the diagnostics message which has the source specified by this
options.
Default: "[]"
2.32 g:LanguageClient_echoProjectRoot *g:LanguageClient_echoProjectRoot*
Whether to echo messages in vim of the form: "Project root: /home/user/myproject" when
the root of a project is detected using g:LanguageClient_rootMarkers.
Default: 1 to display the messages
Valid options: 1 | 0
2.33 g:LanguageClient_semanticHighlightMaps *g:LanguageClient_semanticHighlightMaps*
String to list/map map. Defines the mapping of semantic highlighting "scopes" to
highlight groups. This depends on the LSP server supporting the proposed
semantic highlighting protocol, see:
https://github.com/microsoft/language-server-protocol/issues/18
https://github.com/microsoft/vscode-languageserver-node/issues/368
Like |g:LanguageClient_serverCommands| this is a map where the keys are
filetypes. However each submap has |regexp| keys and highlight group names
as values (see |highlight-groups|).
>
let g:LanguageClient_semanticHighlightMaps = {
\ 'java': {
\ '^entity.name.function.java': 'Function',
\ '^entity.name.type.class.java': 'Type',
\ '^[^:]*entity.name.function.java': 'Function',
\ '^[^:]entity.name.type.class.java': 'Type'
\ }
\ }
The |regexp| in the keys will be used to match semantic scopes. Then any symbols
that have a semantic scope that matches the key will be highlighted with the
associated highlight group value. Currently there is no defined order if a
semantic scope can match multiple keys, so it is recommended to make the keys
more specific to only match the desired scope(s).
There are a fixed set of semantic scopes defined by the LSP server on startup.
These can be viewed by calling |LanguageClient_showSemanticScopes| which will
show all the semantic scopes and their currently mapped highlight group for
the currently open buffer's filetype.
>
call LanguageClient_showSemanticScopes()
== Output from eclipse.jdt.ls ==
Highlight Group:
None
Semantic Scope:
invalid.deprecated.java
meta.class.java
source.java
Highlight Group:
None
Semantic Scope:
variable.other.autoboxing.java
meta.method.body.java
meta.method.java
meta.class.body.java
meta.class.java
source.java
...
Each semantic scope is a list of strings. They are printed with increasing
indent to make it easier to read. For example the first scope is:
>
['invalid.deprecated.java', 'meta.class.java', 'source.java']
It is currently isn't mapped to any highlight group as indicated by the None.
Often its more useful to find what semantic scope corresponds to a piece of
text. This can be done by calling |LanguageClient_showCursorSemanticHighlightSymbols|
while hovering over the text of interest.
>
call LanguageClient_showCursorSemanticHighlightSymbols()
When matching the semantic scopes to keys in |LanguageClient_semanticHighlightMaps|,
the scopes are concatentated using |LanguageClient_semanticScopeSeparator|
which is set to the string |':'| by default. For the previous example the
semantic scope would have this string form using the default separator:
>
invalid.deprecated.java:meta.class.java:source.java
Here are a couple of example |regexp| keys that can/cannot match this scope:
>
'meta.class.java' =~ 'invalid.deprecated.java:meta.class.java:source.java'
'^meta.class.java' !~ 'invalid.deprecated.java:meta.class.java:source.java'
'^invalid.deprecated.java' =~ 'invalid.deprecated.java:meta.class.java:source.java'
'source.java$' =~ 'invalid.deprecated.java:meta.class.java:source.java'
'meta.class.java:source.java' =~ 'invalid.deprecated.java:meta.class.java:source.java'
'invalid.deprecated.java:.*:source.java' =~ 'invalid.deprecated.java:meta.class.java:source.java'
Example configuration for eclipse.jdt.ls:
>
let g:LanguageClient_semanticHighlightMaps = {}
let g:LanguageClient_semanticHighlightMaps['java'] = {
\ '^storage.modifier.static.java:entity.name.function.java': 'JavaStaticMemberFunction',
\ '^meta.definition.variable.java:meta.class.body.java:meta.class.java': 'JavaMemberVariable',
\ '^entity.name.function.java': 'Function',
\ '^[^:]*entity.name.function.java': 'Function',
\ '^[^:]*entity.name.type.class.java': 'Type',
\ }
highlight! JavaStaticMemberFunction ctermfg=Green cterm=none guifg=Green gui=none
highlight! JavaMemberVariable ctermfg=White cterm=italic guifg=White gui=italic
2.34 g:LanguageClient_applyCompletionAdditionalTextEdits *g:LanguageClient_applyCompletionAdditionalTextEdits*
Indicates whether completionItem additional text edits should be applied.
Default: 1
Valid options: 1 | 0
2.35 g:LanguageClient_preferredMarkupKind *g:LanguageClient_preferredMarkupKind*
Sets the preferred markup kind. This value is sent to the server and is
normally used to decide whether to send plaintext or markdown in things like
hover or completion items docunmentation.
This should be set to an array of values with the preferred markup kinds in
order of preferrence. Leaving this config unset, will send `null` to the
server, effectively letting it decide which markup kind to use.
Example setting 1. Set the preferred markup kind to `plaintext`
```
let g:LanguageClient_preferredMarkupKind = ['plaintext']
```
Example setting 2. Set the preferred markup kind to `plaintext` and `markdown`
as a fallback.
```
let g:LanguageClient_preferredMarkupKind = ['plaintext', 'markdown']
```
Example setting 3. Set the preferred markup kind to `markdown`
```
let g:LanguageClient_preferredMarkupKind = ['markdown']
```
This setting may have no effect if the server decides not to honour it.
Default: v:null
Valid options: Array<String>
2.36 g:LanguageClient_floatingWindowStyle *g:LanguageClient_floatingWindowStyle*
Style of opened Neovim floating window.
Default: 'minimal'
Valid options: 'minimal'
2.37 g:LanguageClient_hideVirtualTextsOnInsert *g:LanguageClient_hideVirtualTextsOnInsert*
Hides all virtual texts for the current buffer while editing in insert mode.
Default: 0
Valid options: 1 | 0
2.38 g:LanguageClient_setOmnifunc *g:LanguageClient_setOmnifunc*
Whether set buffer omnifunc to 'LanguageClient#complete'.
Default: v:true
Valid options: v:true | v:false
2.39 g:LanguageClient_binaryPath *g:LanguageClient_binaryPath*
Full path to languageclient binary.
Default: 'bin/languageclient' relative to plugin root.
Valid options: String
2.40 g:LanguageClient_enableExtensions *g:LanguageClient_enableExtensions*
LanguageClient-neovim provides extensions for some language servers, such as gopls or rust-analyzer.
These extensions can be turned on or off, and they are configurable per language (not per language
server).
An example of the extensions provided is running Rust or Go tests in a vim terminal. This takes
advantage of the commands provided by rust-analyzer or gopls (respectively) and executes those
commands in a vim terminal.
Example config:
```
let g:LanguageClient_enableExtensions = {
\ 'go': v:false,
\ 'rust': v:true,
\ }
```
In this example we explicitly disable extensions for the filetype `go`, and enable them for `rust`.
Filetypes not included in this config will also have their extensions disabled, unless you
explicitly enable them like we did for `rust`.
The default value for this config, or the absence of this config, enables extensions for all filetypes.
Default: v:null
2.41 g:LanguageClient_codeLensDisplay *g:LanguageClient_codeLensDisplay*
Control how code lenses are displayed.
Default: >
{
"virtualTexthl": "LanguageClientCodeLens",
}
2.42 g:LanguageClient_hoverMarginSize *g:LanguageClient_hoverMarginSize*
When using floating windows to open hover previews (for more information see
|g:LanguageClient_useFloatingHover|), this setting controls whether and how
big of a margin to draw around the contents of the hover.
Having some margin looks nice, so the default is 1.
Floating windows don't have a true way to set padding/margin on them, so the
strategy used is to add one line above and below the language server's raw
hover response, and one space character before the start of every non-empty
line in the hover response.
Having a space in front of the hover content can cause some syntax
highlighters to mess up (because e.g., they have a regex expecting a syntax
construct to be anchored to the start of a line). To turn off adding this
margin, set this setting to 0. Example:
>
let g:LanguageClient_hoverMarginSize = 0
<
Default: 1
2.43 g:LanguageClient_restartOnCrash *g:LanguageClient_restartOnCrash*
If enabled, the client will attempt to restart the server on the event that it
unexpectedly crashes.
Default: 1
2.44 g:LanguageClient_maxRestartRetries *g:LanguageClient_maxRestartRetries*
Max number of times to attempt to recover from a server crash. Each language
handles its own count independently.
Default: 5
2.45 g:LanguageClient_showCompletionDocs *g:LanguageClient_showCompletionDocs*
Show completion item documentation in a floating window right next to pmenu.
Default: 1
Valid options: 1 | 0
==============================================================================
3. Commands *LanguageClientCommands*
3.1 LanguageClientStart *LanguageClientStart*
Start language server for current buffer.
3.2 LanguageClientStop *LanguageClientStop*
Stop current language server.
==============================================================================
4. Functions *LanguageClientFunctions*
*LanguageClient#Call()*
*LanguageClient_Call()*
Signature: LanguageClient#Call(method: String, params: Map | List, callback: Funcref | String | List | Null)
Call a method of current language server. After receiving response, if
callback is a function, it is invoked with response as params, if the callback
is a list, the response is pushed at the end of it, if callback is null, it is
handled by this plugin default handler.
*LanguageClient#Notify()*
*LanguageClient_Notify()*
Signature: LanguageClient#Notify(method: String, params: Map | List)
Send a notification to the current language server.
*LanguageClient_contextMenu()*
Signature: LanguageClient#contextMenu(...)
Show list of all available actions.
If optional dependency FZF is installed, actions will be displayed in a FZF
prompt, selecting one of the action will then call the action's function.
To skip FZF prompt even if FZF is installed and use native numbered list,
add this variable to vimrc:
`let g:LanguageClient_fzfContextMenu = 0`
For Denite users, a source with name 'contextMenu' is provided.
*LanguageClient#textDocument_hover()*
*LanguageClient_textDocument_hover()*
Signature: LanguageClient#textDocument_hover(...)
Show type info (and short doc) of identifier under cursor.
If you're using Neovim 0.4.0 or later, this function opens documentation in a
floating window. The window is automatically closed when you move the cursor.
Or calling this function again just after opening the floating window moves
the cursor into the window. It is useful when documentation is longer and you
need to scroll down or you want to yank some text in the documentation.
*LanguageClient#textDocument_definition()*
*LanguageClient_textDocument_definition()*
Signature: LanguageClient#textDocument_definition(...)
Goto definition under cursor.
*LanguageClient#textDocument_typeDefinition()*
*LanguageClient_textDocument_typeDefinition()*
Signature: LanguageClient#textDocument_typeDefinition(...)
Goto type definition under cursor.
*LanguageClient#textDocument_implementation()*
*LanguageClient_textDocument_implementation()*
Signature: LanguageClient#textDocument_implementation(...)
Goto implementation under cursor.
*LanguageClient#textDocument_rename()*
Signature: LanguageClient#textDocument_rename()
LanguageClient#textDocument_rename({"newName": ...})
Rename identifier under cursor.
Accepts an optional dictionary argument, which if passed with the {newName}
property, will rename to the provided value without prompting the user. This
can be useful in situations where {newName} can be wholly determined from the
existing name (e.g. capitalization, camelCase, etc).
Example bindings combining with tpope/vim-abolish:
>
" Rename - rn => rename
noremap <leader>rn :call LanguageClient#textDocument_rename()<CR>
" Rename - rc => rename camelCase
noremap <leader>rc :call LanguageClient#textDocument_rename(
\ {'newName': Abolish.camelcase(expand('<cword>'))})<CR>
" Rename - rs => rename snake_case
noremap <leader>rs :call LanguageClient#textDocument_rename(
\ {'newName': Abolish.snakecase(expand('<cword>'))})<CR>
" Rename - ru => rename UPPERCASE
noremap <leader>ru :call LanguageClient#textDocument_rename(
\ {'newName': Abolish.uppercase(expand('<cword>'))})<CR>
<
*LanguageClient#textDocument_codeLens()*
*LanguageClient_textDocument_codeLens()*
Signature: LanguageClient#textDocument_codeLens(...)
Computes and displays the codeLens for the currently open file.
*LanguageClient#handleCodeLensAction()*
*LanguageClient_handleCodeLensAction()*
Signature: LanguageClient#handleCodeLensAction(...)
Runs the action associated with the codeLens at the current line. It does
nothing if the codeLens is not actionable.
*LanguageClient#textDocument_documentSymbol()*
*LanguageClient_textDocument_documentSymbol()*
Signature: LanguageClient#textDocument_documentSymbol(...)
List of current buffer's symbols.
If optional dependency FZF is installed, symbols will be displayed in a FZF
prompt, selecting one of the symbol will then goto the symbol's definition.
For Denite users, a source with name 'documentSymbol' is provided.
*LanguageClient#textDocument_references()*
*LanguageClient_textDocument_references()*
Signature: LanguageClient#textDocument_references(...)
List all references of identifier under cursor.
If optional dependency FZF is installed, locations will be displayed in a FZF
prompt, selecting one of the entry will then goto the reference location.
For Denite users, a source with name 'references' is provided.
*LanguageClient#textDocument_visualCodeAction()*
*LanguageClient_textDocument_visualCodeAction()*
Signature: LanguageClient#textDocument_visualCodeAction(...)
Show code actions at current visual selection.
*LanguageClient#textDocument_codeAction()*
*LanguageClient_textDocument_codeAction()*
Signature: LanguageClient#textDocument_codeAction(...)
Show code actions at current location.
*LanguageClient#textDocument_completion()*
*LanguageClient_textDocument_completion()*
Signature: LanguageClient#textDocument_completion(...)
Get a list of completion items at current editing location. Note, this is a
synchronous call.
When using a supported completion manager (deoplete and
nvim-completion-manager are supported), completion should work out of the box.
*LanguageClient#textDocument_formatting()*
*LanguageClient_textDocument_formatting()*
Signature: LanguageClient#textDocument_formatting(...)
Format current document.
*LanguageClient#textDocument_rangeFormatting()*
*LanguageClient_textDocument_rangeFormatting()*
Signature: LanguageClient#textDocument_rangeFormatting(...)
Format selected lines.
*LanguageClient#textDocument_documentHighlight()*
*LanguageClient_textDocument_documentHighlight()*
Signature: LanguageClient#textDocument_documentHighlight(...)
Highlight usages of the symbol under the cursor.
*LanguageClient#clearDocumentHighlight()*
*LanguageClient_clearDocumentHighlight()*
Signature: LanguageClient#clearDocumentHighlight()
Clear the symbol usages highlighting.
*LanguageClient#workspace_symbol()*
*LanguageClient_workspace_symbol()*
Signature: LanguageClient#workspace_symbol([query: String], ...)
List of project's symbols.
If optional dependency FZF is installed, symbols will be displayed in a FZF
prompt, selecting one of the symbol will then goto the symbol's definition.
For Denite users, a source with name 'workspaceSymbol' is provided.
*LanguageClient#workspace_applyEdit()*
*LanguageClient_workspace_applyEdit()*
Signature: LanguageClient#workspace_applyEdit(params: Dict, callback: Function | List | Null)
Apply a workspace edit.
*LanguageClient#workspace_executeCommand()*
*LanguageClient_workspace_executeCommand()*
Signature: LanguageClient#workspace_executeCommand(command: String, [arguments: Any], [callback: Function | List | Null])
Execute a workspace command.
*LanguageClient#setLoggingLevel()*
*LanguageClient_setLoggingLevel()*
Signature: LanguageClient#setLoggingLevel(level: String)
Set the plugin logging level.
Valid logging levels are 'ERROR', 'WARN'(default), 'INFO', 'DEBUG'.
*LanguageClient#setDiagnosticsList()*
Signature: LanguageClient#setDiagnosticsList(diagnosticsList: String)
Set the destination of diagnostics.
Valid options are 'Quickfix', 'Location', 'Disabled'.
*LanguageClient#registerServerCommands()*
*LanguageClient_registerServerCommands()*
Signature: LanguageClient#registerServerCommands(commands: Map)
Register/Override commands to start language servers.
*LanguageClient#registerHandlers*
*LanguageClient_registerHandlers*
Signature: LanguageClient#registerHandlers(handlers: Map)
Register/Override method/notification handlers.
Example >
function! HandleWindowProgress(params) abort
echomsg json_encode(a:params)
endfunction
call LanguageClient#registerHandlers({
\ 'window/progress': 'HandleWindowProgress',
\ })
*LanguageClient#serverStatus()*
*LanguageClient_serverStatus()*
Signature: LanguageClient#serverStatus()
Get language server status. 0 for server idle. 1 for server busy.
*LanguageClient#serverStatusMessage()*
*LanguageClient_serverStatusMessage()*
Signature: LanguageClient#serverStatusMessage()