forked from autozimu/LanguageClient-neovim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LanguageClient.txt
568 lines (379 loc) · 17.7 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
*LanguageClient* Language Server Protocol support for neovim
==============================================================================
CONTENTS *LanguageClientContents*
1. Usage ....................... |LanguageClientUsage|
2. Configuration ............... |LanguageClientConfiguration|
3. Commands .................... |LanguageClientCommands|
4. Functions ................... |LanguageClientFunctions|
5. Events ...................... |LanguageClientEvents|
6. License ..................... |LanguageClientLicense|
7. Bugs ........................ |LanguageClientBugs|
8. Contributing ................ |LanguageClientContributing|
==============================================================================
1. Usage *LanguageClientUsage*
Before using of LanguageClient, it is necessary to specify commands that are
going to be used to start language server. See |LanguageClient_serverCommands|
for detail. Here is a simple example config: >
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'nightly', '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>
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,
those info are populated into 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*
String to list map. Defines commands to start language server for specific
filetype. For example: >
let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'nightly', 'rls'],
\ }
In the example above, 'run', 'nightly', and 'rls' are arguments to the
'rustup' command line tool.
Or tcp connection string to the server, >
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> | String>
2.2 g:LanguageClient_diagnosticsDisplay *g:LanguageClient_diagnosticsDisplay*
Control how diagnostics messages are displayed.
Default: >
{
1: {
"name": "Error",
"texthl": "ALEError",
"signText": "✖",
"signTexthl": "ALEErrorSign",
},
2: {
"name": "Warning",
"texthl": "ALEWarning",
"signText": "⚠",
"signTexthl": "ALEWarningSign",
},
3: {
"name": "Information",
"texthl": "ALEInfo",
"signText": "ℹ",
"signTexthl": "ALEInfoSign",
},
4: {
"name": "Hint",
"texthl": "ALEInfo",
"signText": "➤",
"signTexthl": "ALEInfoSign",
},
}
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"
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*
Default path for language server settings
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.
2.14 g:LanguageClient_loggingLevel *g:LanguageClient_loggingLevel*
Logging level.
Default: 'WARN'
Valid options: 'DEBUG' | 'INFO' | 'WARN' | 'ERROR'
2.14 g:LanguageClient_serverStderr *g:LanguageClient_serverStderr*
Path for language server stderr.
Default: None
Valid options: any valid path.
2.15 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.16 g:LanguageClient_fzfOptions *g:LanguageClient_fzfOptions*
Customize fzf. Check fzf documentation for available options.
Default: v:null
Valid option: Array<String> | String
2.17 g:LanguageClient_hasSnippetSupport *g:LanguageClient_hasSnippetSupport*
Override detection of snippet support.
Default: 1
Valid options: 1 | 0
2.18 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.19 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.20 g:LanguageClient_fzfContextMenu *g:LanguageClient_fzfContextMenu*
Should FZF be used for `LanguageClient_contextMenu()`.
Default: 1
Valid options: 1 | 0
2.21 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
==============================================================================
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: Function | 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.
*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()*
*LanguageClient_textDocument_rename()*
Signature: LanguageClient#textDocument_rename(...)
Rename identifier under cursor.
*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_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 an
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#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. By default, only errors are logged into
/tmp/LanguageClient.log (%TMP%/LanguageClient.log for Windows).
Valid logging levels are 'ERROR'(default), 'INFO', 'DEBUG'.
*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()
Get a detail message of server status.
*LanguageClient#statusLine()*
*LanguageClient_statusLine()*
Signature: LanguageClient#statusLine()
Example status line making use of |LanguageClient_serverStatusMessage|.
*LanguageClient#cquery_base*
*LanguageClient_cquery_base*
Signature: LanguageClient#cquery_base(...)
Call $cquery/base.
*LanguageClient#cquery_derived*
*LanguageClient_cquery_derived*
Signature: LanguageClient#cquery_derived(...)
Call $cquery/derived.
*LanguageClient#cquery_callers*
*LanguageClient_cquery_callers*
Signature: LanguageClient#cquery_callers(...)
Call $cquery/callers.
*LanguageClient#cquery_vars*
*LanguageClient_cquery_vars*
Signature: LanguageClient#cquery_vars(...)
Call $cquery/vars.
*LanguageClient#java_classFileContent*
Signature: LanguageClient#java_classFileContent(...)
Call java/classFileContent.
==============================================================================
5. Events *LanguageClientEvents*
LanguageClient provides two events for use with |User| |autocmd|s.
5.1 LanguageClientStarted
*LanguageClientStarted*
This event is triggered after LanguageClient has successfully started.
5.2 LanguageClientStopped
*LanguageClientStopped*
This event is triggered after LanguageClient has stopped.
Example: >
augroup LanguageClient_config
autocmd!
autocmd User LanguageClientStarted setlocal signcolumn=yes
autocmd User LanguageClientStopped setlocal signcolumn=auto
augroup END
5.3 LanguageClientDiagnosticsChanged
*LanguageClientDiagnosticsChanged*
This event is triggered when diagnostics changed.
5.4 LanguageClientBufReadPost
*LanguageClientBufReadPost*
Triggered after BufReadPost is successfully handled by language client.
==============================================================================
6. License *LanguageClientLicense*
The MIT License.
==============================================================================
7. Bugs *LanguageClientBugs*
Please report all bugs at https://github.com/autozimu/LanguageClient-neovim/issues
If you believe you've find a bug in this plugin, please first try to help
narrow down where the error happens, which will reduce bug fix time/effort
tremendously.
Try increasing logging level to 'INFO' or 'DEBUG' using the
|LanguageClient_setLoggingLevel| function, and check the log file.
There is also an utility script in: >
$RUNTIME/rplugin/python3/LanguageClient/wrapper.sh
which can work like a proxy and logs all stdin and stdout of the language
server into a log file.
==============================================================================
8. Contributing *LanguageClientContributing*
https://github.com/autozimu/LanguageClient-neovim
vim: ft=help