You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+62Lines changed: 62 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,65 @@
1
+
## 6.18.0 (2024-08-05)
2
+
3
+
### Bug fixes
4
+
5
+
Style the info element so that newlines are preserved, to make it easier to display multi-line info from a string source.
6
+
7
+
### New features
8
+
9
+
When registering an `abort` handler for a completion query, you can now use the `onDocChange` option to indicate that your query should be aborted as soon as the document changes while it is running.
10
+
11
+
## 6.17.0 (2024-07-03)
12
+
13
+
### Bug fixes
14
+
15
+
Fix an issue where completions weren't properly reset when starting a new completion through `activateOnCompletion`.
16
+
17
+
### New features
18
+
19
+
`CompletionContext` objects now have a `view` property that holds the editor view when the query context has a view available.
20
+
21
+
## 6.16.3 (2024-06-19)
22
+
23
+
### Bug fixes
24
+
25
+
Avoid adding an `aria-autocomplete` attribute to the editor when there are no active sources active.
26
+
27
+
## 6.16.2 (2024-05-31)
28
+
29
+
### Bug fixes
30
+
31
+
Allow backslash-escaped closing braces inside snippet field names/content.
32
+
33
+
## 6.16.1 (2024-05-29)
34
+
35
+
### Bug fixes
36
+
37
+
Fix a bug where multiple backslashes before a brace in a snippet were all removed.
38
+
39
+
## 6.16.0 (2024-04-12)
40
+
41
+
### New features
42
+
43
+
The new `activateOnCompletion` option allows autocompletion to be configured to chain completion activation for some types of completions.
44
+
45
+
## 6.15.0 (2024-03-13)
46
+
47
+
### New features
48
+
49
+
The new `filterStrict` option can be used to turn off fuzzy matching of completions.
50
+
51
+
## 6.14.0 (2024-03-10)
52
+
53
+
### New features
54
+
55
+
Completion results can now define a `map` method that can be used to adjust position-dependent information for document changes.
56
+
57
+
## 6.13.0 (2024-02-29)
58
+
59
+
### New features
60
+
61
+
Completions may now provide 'commit characters' that, when typed, commit the completion before inserting the character.
0 commit comments