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
+1
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Versioning].
22
22
enabled by default ([@JacquesLucke])
23
23
- Suppress error for hover as the user may just play with the mouse ([@oltolm]).
24
24
- solve the problem of failed parsing of containers ([@henryriley0])
25
+
- Resolves #421 - Added `registerLimit` option to specify the registers to display to avoid corrupting the whole registers view - PR #444 ([@chenzhiy2001])
Copy file name to clipboardexpand all lines: package.json
+30
Original file line number
Diff line number
Diff line change
@@ -299,6 +299,11 @@
299
299
"description": "Content will be executed on the SSH host before the debugger call."
300
300
}
301
301
}
302
+
},
303
+
"registerLimit": {
304
+
"type": "string",
305
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
306
+
"default": ""
302
307
}
303
308
}
304
309
},
@@ -468,6 +473,11 @@
468
473
"description": "Content will be executed on the SSH host before the debugger call."
469
474
}
470
475
}
476
+
},
477
+
"registerLimit": {
478
+
"type": "string",
479
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
480
+
"default": ""
471
481
}
472
482
}
473
483
}
@@ -766,6 +776,11 @@
766
776
"description": "Content will be executed on the SSH host before the debugger call."
767
777
}
768
778
}
779
+
},
780
+
"registerLimit": {
781
+
"type": "string",
782
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
783
+
"default": ""
769
784
}
770
785
}
771
786
},
@@ -846,6 +861,11 @@
846
861
],
847
862
"description": "Whether debugger should stop at application entry point",
848
863
"default": false
864
+
},
865
+
"registerLimit": {
866
+
"type": "string",
867
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
868
+
"default": ""
849
869
}
850
870
}
851
871
}
@@ -992,6 +1012,11 @@
992
1012
"type": "array",
993
1013
"description": "mago commands to run when starting to debug",
994
1014
"default": []
1015
+
},
1016
+
"registerLimit": {
1017
+
"type": "string",
1018
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
1019
+
"default": ""
995
1020
}
996
1021
}
997
1022
},
@@ -1057,6 +1082,11 @@
1057
1082
"type": "boolean",
1058
1083
"description": "Whether debugger should stop after connecting to target",
1059
1084
"default": false
1085
+
},
1086
+
"registerLimit": {
1087
+
"type": "string",
1088
+
"description": "List of numbers specifying the registers to display. An empty string indicates that the contents of all the registers must be returned.",
0 commit comments