Commit graph

50 commits

Author SHA1 Message Date
Dirk Baeumer
e480d92f2a Fixes #400: Link to snippet syntax 404s 2018-04-09 21:24:43 +02:00
Dirk Bäumer
04d4cbf4ba
Merge pull request #419 from simark/patch-1
Change TextDocumentSyncKindIncremental -> TextDocumentSyncKind.Increm…
2018-04-09 15:30:21 +02:00
Dirk Bäumer
d7f0375c99
Merge pull request #435 from rcjsuen/escape-locations
Escape pipe characters so that they get rendered in HTML
2018-04-09 15:09:16 +02:00
Dirk Bäumer
5ef226a9bb
Merge pull request #434 from autozimu/typo
Typo.
2018-04-09 15:04:57 +02:00
Dirk Bäumer
31573fd4b8
Merge pull request #431 from ggilmore/gh-pages
Clarify "textDocument/didOpen" requirement
2018-04-09 14:53:32 +02:00
Dirk Bäumer
f09e61c23d
Merge pull request #442 from rcjsuen/patch-6
Change workspace/workspaceFolder's icon to be a request
2018-04-06 16:28:15 +02:00
Dirk Baeumer
e361dca587 Add client capability for related information 2018-04-05 16:38:32 +02:00
Dirk Baeumer
69028bf06f Documented support for related information 2018-04-05 15:57:53 +02:00
Dirk Baeumer
13347dca69 Add change Log 2018-04-05 15:52:47 +02:00
Remy Suen
42079a2401
Change workspace/workspaceFolder's icon to be a request
As workspace/workspaceFolder is a request, it should use a hook
instead of an arrow to indicate that something will be sent back to
the originator of the message.

Signed-off-by: Remy Suen <remy.suen@gmail.com>
2018-04-05 19:45:51 +09:00
Remy Suen
46208bccb2
Change workspace/configuration's icon to be a request
As workspace/configuration is a request, it should use a hook instead
of an arrow to indicate that something will be sent back to the
originator of the message.

Signed-off-by: Remy Suen <remy.suen@gmail.com>
2018-04-04 21:59:12 +09:00
Remy Suen
0d7c275ad7 Escape pipe character so that it is rendered in HTML
Signed-off-by: Remy Suen <remy.suen@gmail.com>
2018-03-27 19:23:50 +09:00
Junfeng Li
b7366680a5 Typo. 2018-03-24 23:54:10 -07:00
Geoffrey Gilmore
beac16536b Clarify "textDocument/didOpen" requirement
See: https://github.com/Microsoft/language-server-protocol/issues/177

Clarify in the specification whether or not `textDocument/didOpen` is required first
2018-03-21 12:16:44 -07:00
Dirk Baeumer
8eb271af5a Fixes #420: Specification Typo 2018-03-12 10:26:00 +01:00
Simon Marchi
8ba6ccd66e
Change TextDocumentSyncKindIncremental -> TextDocumentSyncKind.Incremental 2018-03-09 10:07:53 -05:00
Dirk Bäumer
fd86b9f00e
Merge pull request #373 from Xanewok/patch-3
Change message params types to match JSON-RPC spec
2018-03-08 11:19:25 +01:00
Martin Aeschlimann
1fce61850e Improve TextEdit[] spec 2018-03-07 21:16:14 +01:00
Dirk Baeumer
e196b0b915 Merge the TextEdit[] spec into the specification.md 2018-03-06 09:26:05 +01:00
Dirk Baeumer
dc229c160f Fixes #409: Question: What is a diagnostic "code"? 2018-02-23 11:09:50 +01:00
Dirk Baeumer
6d39a3682a Merging #408: Make the description of textDocument/didOpen less ambiguous 2018-02-23 10:58:50 +01:00
Dirk Bäumer
459d252483
Merge pull request #403 from rcjsuen/trigger-kind
Add a new CompletionTriggerKind.TriggerForIncompleteCompletions for re-triggers
2018-02-23 10:40:28 +01:00
Igor Matuszewski
aebb91ec8b
Mention legal JSON-RPC message params types 2018-02-22 23:16:56 +01:00
Dirk Baeumer
39b118153e Merging proposed protocol into the specification. 2018-02-22 12:48:41 +01:00
Remy Suen
f9ddfb1cd2 Introduce new CompletionTriggerKind for re-triggers
Added a new CompletionTriggerKind named
TriggerForIncompleteCompletions. This will be used when completion
requests were re-triggered because the current completion list is
incomplete.

Signed-off-by: Remy Suen <remy.suen@gmail.com>
2018-02-13 20:35:16 +09:00
Dirk Bäumer
9b2724b45c
Merge pull request #388 from natebosch/patch-1
Fix typos in `SymbolInformation` documentation
2018-02-09 15:38:54 +01:00
Dirk Bäumer
862b8992f6
Merge pull request #391 from laginha87/laginha87-patch-1
Fix typo
2018-02-09 15:18:47 +01:00
Martin Björkström
24df25232e
Fix code block formatting
- Fix code block formatting for DocumentLinkParams and ApplyWorkspaceEditResponse
2018-02-05 23:14:09 +02:00
Filipe Correia
eddb9950c0
Fix typo 2018-02-04 09:05:47 +00:00
Nate Bosch
15fd7b3916
Fix typos in SymbolInformation documentation 2018-01-24 18:45:51 -08:00
Elliotte Rusty Harold
eb70a7804c
minor grammar nits 2018-01-24 17:22:40 -05:00
Kenneth Auchenberg
d99706491c Merge branch 'gh-pages' of github.com:Microsoft/language-server-protocol into design-polish 2018-01-17 13:20:53 -08:00
Dirk Baeumer
3c2a7dfa37 Fixes #374: Specification page filters out the | symbol 2018-01-15 10:13:04 +01:00
Igor Matuszewski
8cb50fb735
Allow for any type in params with Array type 2018-01-12 15:11:51 +01:00
Igor Matuszewski
b06d2c4c0d
Change message params types to match JSON-RPC spec
Since the interface is supposed to describe message format to match [JSON-RPC spec](http://www.jsonrpc.org/specification),
the params type must be specified as either `Array` or `Object`.

From spec:
> 4.2 Parameter Structures
>
> If present, parameters for the rpc call MUST be provided as a Structured value. Either by-position through an Array or by-name through an Object.
2018-01-12 14:56:10 +01:00
Kenneth Auchenberg
3c1fd0a234
Merge branch 'gh-pages' into design-polish 2018-01-11 11:38:46 -08:00
Kenneth Auchenberg
84ce3cc40a Make tables responsive 2018-01-10 16:48:51 -08:00
Dirk Baeumer
b83effa317 Fixes #371: Section about initialize's response is not formatted correctly 2018-01-10 12:00:45 +01:00
Jens Hausdorf
90345d62a7
fix 2017-12-31 12:10:43 +01:00
Kenneth Auchenberg
e141c68607 Tweak wording 2017-12-26 21:34:44 -08:00
Erich Gamma
a8febccecf Fixed some typos 2017-12-22 18:22:45 +01:00
Dirk Baeumer
d66e489a43 Fixes #222 2017-12-21 15:00:28 +01:00
Dirk Baeumer
e0b2020aa9 Fixes #346 2017-12-21 14:55:45 +01:00
Dirk Baeumer
8ff8595e5e Add link to markdown source 2017-12-21 14:51:44 +01:00
Dirk Baeumer
aabe3d549d Fixes #342: Version number to use for a closed file in a TextDocumentEdit 2017-12-21 11:15:04 +01:00
Dirk Baeumer
2c49101eea Add language ids 2017-12-21 10:36:50 +01:00
Dirk Baeumer
480904410b Fixed inline or tyoe rendering 2017-12-21 09:52:05 +01:00
Dirk Baeumer
5ba54984f5 More work on the web site 2017-12-15 16:38:41 +01:00
Dirk Baeumer
ba43308f5d Add support for a specification toc using yml file 2017-12-14 16:33:15 +01:00
Dirk Baeumer
22ded8d5e5 Initial commit of the web site 2017-12-14 15:05:38 +01:00