@@ -3401,12 +3401,22 @@ class GuideOptions extends BaseEditorOption<EditorOption.guides, InternalGuidesO
3401
3401
'editor.guides.bracketPairs' : {
3402
3402
type : [ 'boolean' , 'string' ] ,
3403
3403
enum : [ true , 'active' , false ] ,
3404
+ enumDescriptions : [
3405
+ nls . localize ( 'editor.guides.bracketPairs.true' , "Enables bracket pair guides." ) ,
3406
+ nls . localize ( 'editor.guides.bracketPairs.active' , "Enables bracket pair guides only for the active bracket pair." ) ,
3407
+ nls . localize ( 'editor.guides.bracketPairs.false' , "Disables bracket pair guides." ) ,
3408
+ ] ,
3404
3409
default : defaults . bracketPairs ,
3405
3410
description : nls . localize ( 'editor.guides.bracketPairs' , "Controls whether bracket pair guides are enabled or not." )
3406
3411
} ,
3407
3412
'editor.guides.bracketPairsHorizontal' : {
3408
3413
type : [ 'boolean' , 'string' ] ,
3409
3414
enum : [ true , 'active' , false ] ,
3415
+ enumDescriptions : [
3416
+ nls . localize ( 'editor.guides.bracketPairsHorizontal.true' , "Enables horizontal guides as addition to vertical bracket pair guides." ) ,
3417
+ nls . localize ( 'editor.guides.bracketPairsHorizontal.active' , "Enables horizontal guides only for the active bracket pair." ) ,
3418
+ nls . localize ( 'editor.guides.bracketPairsHorizontal.false' , "Disables horizontal bracket pair guides." ) ,
3419
+ ] ,
3410
3420
default : defaults . bracketPairsHorizontal ,
3411
3421
description : nls . localize ( 'editor.guides.bracketPairsHorizontal' , "Controls whether horizontal bracket pair guides are enabled or not." )
3412
3422
} ,
0 commit comments