File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 318
318
"description" : " Whether to show function parameter name inlay hints at the call site"
319
319
},
320
320
"rust-analyzer.inlayHints.maxLength" : {
321
- "type" : " integer" ,
321
+ "type" : [
322
+ " null" ,
323
+ " integer"
324
+ ],
322
325
"default" : 20 ,
323
326
"minimum" : 0 ,
324
327
"exclusiveMinimum" : true ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG;
8
8
export interface InlayHintOptions {
9
9
typeHints : boolean ;
10
10
parameterHints : boolean ;
11
- maxLength : number ;
11
+ maxLength : number | null ;
12
12
}
13
13
14
14
export interface CargoWatchOptions {
@@ -160,7 +160,7 @@ export class Config {
160
160
return {
161
161
typeHints : this . cfg . get ( "inlayHints.typeHints" ) as boolean ,
162
162
parameterHints : this . cfg . get ( "inlayHints.parameterHints" ) as boolean ,
163
- maxLength : this . cfg . get ( "inlayHints.maxLength" ) as number ,
163
+ maxLength : this . cfg . get ( "inlayHints.maxLength" ) as null | number ,
164
164
} ;
165
165
}
166
166
get excludeGlobs ( ) { return this . cfg . get ( "excludeGlobs" ) as string [ ] ; }
You can’t perform that action at this time.
0 commit comments