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: package.json
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1403,17 +1403,24 @@
1403
1403
"default": 2000,
1404
1404
"markdownDescription": "The upper limit of object length to show object details in workspace viewer and provide session symbol completion. Decrease this value if you experience significant delay after executing R commands caused by large global objects with many elements. Changes the option `vsc.object_length_limit` in R. Requires `#r.sessionWatcher#` to be set to `true`."
1405
1405
},
1406
+
"r.session.objectTimeout": {
1407
+
"type": "integer",
1408
+
"default": 50,
1409
+
"markdownDescription": "The maximum number of milliseconds to get information of a single object in the global environment. Decrease this value if you experience significant delay after executing R commands caused by large global objects with many elements. Changes the option `vsc.object_timeout` in R. Requires `#r.sessionWatcher#` to be set to `true`."
1410
+
},
1406
1411
"r.session.levelOfObjectDetail": {
1407
1412
"type": "string",
1408
1413
"markdownDescription": "How much of the object to show on hover, autocompletion, and in the workspace viewer? Changes the option `vsc.str.max.level` in R. Requires `#r.sessionWatcher#` to be set to `true`.",
1409
1414
"default": "Minimal",
1410
1415
"enum": [
1411
1416
"Minimal",
1417
+
"Normal",
1412
1418
"Detailed"
1413
1419
],
1414
1420
"enumDescriptions": [
1415
1421
"Display literal values and object types only.",
1416
-
"Display list content, data frame column values, and example values."
1422
+
"Display the top level of list content, data frame column values, and example values.",
1423
+
"Display the top two levels of list content, data frame column values, and example values. This option may cause notable delay after each user input in the terminal."
0 commit comments