Commit Graph

219 Commits

Author SHA1 Message Date
Henning Dieterichs
5f8dacf8a2 Adds support for snippets in inline completions (fixes #138260) 2022-03-02 16:02:51 +01:00
Johannes Rieken
778b74a215 adding InlayHint#textEdits, https://github.com/microsoft/vscode/issues/141576 2022-03-01 18:24:15 +01:00
Johannes Rieken
261adce05c remove InlayHint#command for now, https://github.com/microsoft/vscode/issues/141576, https://github.com/microsoft/vscode/issues/143740 2022-02-24 15:00:46 +01:00
Henning Dieterichs
5163f619ea Adresses feedback inline completion API discussion. 2022-02-09 15:30:26 +01:00
Johannes Rieken
765d2ef252 add doc for padding-left/right, add doc for inlay hint kind but also remove InlayHintKind#other, https://github.com/microsoft/vscode/issues/16221 2022-02-08 18:37:43 +01:00
Johannes Rieken
627d46551d support double click gesture on inlay hints, API polish, https://github.com/microsoft/vscode/issues/16221 2022-02-05 14:25:37 +01:00
Alex Dima
6136c815bc Renames 2022-02-04 15:01:44 +01:00
Johannes Rieken
e0aade162d race providers against cancellation so that cancelled requests dont reply with a full result but with a cancellation error. fyi @hediet added external error handling to inline completions 2022-02-04 09:38:42 +01:00
Johannes Rieken
f933065f53 more cancellation handling on the ext host, https://github.com/microsoft/vscode/issues/140557 2022-02-03 16:31:41 +01:00
Johannes Rieken
4a130c40ed enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391 2022-02-02 14:35:33 +01:00
Johannes Rieken
ffdeff7b55 show error when inlay hints command fails, annotate error with source (e.g extension name), fixes https://github.com/microsoft/vscode/issues/141588 2022-01-27 10:47:15 +01:00
Henning Dieterichs
9c468f3d03 Implements #136452 by introducing the flag completeBracketPairs for inline completions. 2022-01-24 09:53:47 +01:00
Alex Dima
d8ca757f2b Move ISingleEditOperation to /core/ (#141174) 2022-01-21 20:35:35 +01:00
Johannes Rieken
a24000a9a3 For parts with location and command: give link gesture to location and append command to context menu, add more jsdoc for API, remove dead code, https://github.com/microsoft/vscode/issues/16221#issuecomment-264527520 2022-01-20 14:47:05 +01:00
Johannes Rieken
15db136c3c use Dto<T> util in more places, some clean-up/alignment of caching logic 2022-01-19 15:12:22 +01:00
Johannes Rieken
d4dde3aa06 support label part tooltip in addition to item tooltip, https://github.com/microsoft/vscode/issues/16221#issuecomment-264527520 2022-01-19 13:54:35 +01:00
Johannes Rieken
8ef8933a1a incorporate API feedback, https://github.com/microsoft/vscode/issues/16221 2022-01-19 09:23:48 +01:00
Johannes Rieken
f30e6a710d make trace provider logging more minification friendly 2022-01-18 14:47:05 +01:00
Johannes Rieken
7718b8ef72 make token to race against mandatory optional, https://github.com/microsoft/vscode/issues/140557 2022-01-18 13:38:56 +01:00
Johannes Rieken
56a830bc68 on ext-host race selection ranges, workspace symbols, and document symbols against cancellation, https://github.com/microsoft/vscode/issues/140557 2022-01-18 13:33:07 +01:00
Johannes Rieken
57eaad7de3 on the ext-host, race call and type hierarchy against cancellation so save bandwidth, https://github.com/microsoft/vscode/issues/140557 2022-01-18 13:25:20 +01:00
Johannes Rieken
19e3ef41bd In the ext-host, race goto-symbol features against cancellation, https://github.com/microsoft/vscode/issues/140557 2022-01-18 13:08:25 +01:00
Johannes Rieken
ad5dd4e736 add trace logging for inlay hint adapter, ignore out of range hint silently 2022-01-14 16:05:27 +01:00
Johannes Rieken
e5703c8405 allow to race against cancellation when invoking _withAdapter, never log cancellation errors, https://github.com/microsoft/vscode/issues/140557 2022-01-12 16:17:39 +01:00
Johannes Rieken
1a18335429 💄 simpliy typings around adapter logic 2022-01-12 09:46:52 +01:00
Johannes Rieken
8f8d0a9cc4 make sure inlay hints are within range asked for, https://github.com/microsoft/vscode/issues/16221 2022-01-12 09:20:08 +01:00
Johannes Rieken
1cfc360e4b drop and warn when inlay hint has empty label, https://github.com/microsoft/vscode/issues/16221 2022-01-11 09:36:29 +01:00
Johannes Rieken
2586299c42 experiment with InlayHintLabelPart and source location as "anchor action",
https://github.com/microsoft/vscode/issues/129528
2022-01-07 20:47:33 +01:00
Johannes Rieken
3677cc48a8 support to resolve inlay hints for hover and for future display parts, https://github.com/microsoft/vscode/issues/129528 2022-01-06 16:30:04 +01:00
Alex Dima
973684056e Rename modes to languages 2021-12-30 18:52:15 +01:00
Henning Dieterichs
075ba020e8 Fixes #137000. SelectedCompletionInfo now has the members completionKind and isSnippetText. 2021-11-23 15:31:04 +01:00
Johannes Rieken
409041b7ff dedupe workspace symbols results 2021-11-16 14:07:03 +01:00
Johannes Rieken
5dcc08052c change back onDidChaonDidChangeInlayHints, ignore events for model for which a request is currently pending, https://github.com/microsoft/vscode/issues/13043 2021-10-11 10:32:00 +02:00
Johannes Rieken
bbff19b5ba allow to send onDidChangeInlayHints-event for specific uris, https://github.com/microsoft/vscode/issues/130430 2021-10-04 12:17:10 +02:00
Johannes Rieken
cc365575fc extract and reuse DocumentSelector-transformer, https://github.com/microsoft/vscode/issues/133331 2021-09-17 16:33:42 +02:00
Henning Dieterichs
aeb8b4be9a Updates inline completion provider API docs and renames selectedSuggestionInfo to selectedCompletionInfo. 2021-08-26 12:05:15 +02:00
Henning Dieterichs
60c88bb233 allows inline suggestion providers to interact with the suggest widget. 2021-08-19 17:03:06 +02:00
Johannes Rieken
e30d70f9f5 turn language status API proposal into push model, https://github.com/microsoft/vscode/issues/129037 2021-07-21 12:51:14 +02:00
Johannes Rieken
4508c29d35 first cut for language status API proposal, https://github.com/microsoft/vscode/issues/129037 2021-07-21 10:22:36 +02:00
Johannes Rieken
f50840e91b add type hierarchy API test, fix conversion direction for arguments, also fix call hierarchy 2021-07-15 13:08:00 +02:00
Yan Zhang
8135848f77 add type hierarchy provider
Signed-off-by: Yan Zhang <yanzh@microsoft.com>
2021-07-15 11:48:28 +08:00
Johannes Rieken
90197cbc94 use async-await in extHostLanguageFeatures, stop using asPromise 2021-07-02 12:18:48 +02:00
Johannes Rieken
24f9000e97 merge CompletionItemLabel into CompletionItem#label, https://github.com/microsoft/vscode/issues/39441 2021-06-22 14:35:31 +02:00
Johannes Rieken
f2fe357377 fix test failure 2021-06-07 13:06:43 +02:00
Johannes Rieken
32106ee154 drop links with paths longer than 50'000 characters, https://github.com/microsoft/vscode/issues/124942 2021-06-07 12:28:26 +02:00
Henning Dieterichs
f32b38aa21 Allows to directly return an array of inline completions instead of an InlineCompletionList. 2021-06-02 15:13:55 +02:00
Henning Dieterichs
d1ed9c8bf3 Adds proposed API for window.getInlineCompletionItemController(...).onDidShowCompletionItem. 2021-05-26 20:34:04 +02:00
Henning Dieterichs
231c155d31 Refactors the inline completion feature. 2021-05-21 19:40:38 +02:00
Henning Dieterichs
9086ecd9f0 Renames Suggestion to Completion and cleans up API 2021-05-21 11:29:08 +02:00
Henning Dieterichs
09ab8ad202 wip 2021-05-19 17:05:31 +02:00