Skip to content

Commit b4b6481

Browse files
committed
document latest features
1 parent a28f59b commit b4b6481

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.MD

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,25 @@ Patches `toString()` insert function snippet on number types to remove tabStop.
119119

120120
Try to restore [original](https://github.com/microsoft/TypeScript/issues/49012) properties sorting in some places such as object destructure & dot property access.
121121

122+
### Switch Exclude Covered Cases
123+
124+
(*enabled by default*)
125+
126+
Exclude already covered strings / enums from suggestions ([TS repo issue](https://github.com/microsoft/TypeScript/issues/13711)).
127+
122128
### Mark Code Actions
123129

124130
(*enabled by default* with two settings)
125131

126132
Mark all TS code actions with `🔵`, so you can be sure they're coming from TypeScript, and not some other extension.
127133

134+
### Additional Types Suggestions
135+
136+
```ts
137+
// Adds types in default constraint:
138+
type A<T extends 'foo' | 'bar' = ''> = ...
139+
```
140+
128141
### Builtin CodeFix Fixes
129142
130143
## Even Even More

0 commit comments

Comments
 (0)