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
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -329,6 +329,27 @@
329
329
"type": "boolean",
330
330
"default": false,
331
331
"order": 180
332
+
},
333
+
"longLineLength": {
334
+
"title": "Single line length that triggers semantic view large file optimizations",
335
+
"description": "Will throttle semantic view updates on the file if any one line is longer than this number; value of 0 means getting the value from the corresponding setting in linter-ui-default, or 4000 if that is unavaliable",
336
+
"type": "integer",
337
+
"default": 0,
338
+
"order": 200
339
+
},
340
+
"largeFileLineCount": {
341
+
"title": "Number of lines that triggers semantic view large file optimizations",
342
+
"description": "Will throttle semantic view updates on the file if it has more lines than this number; value of 0 means getting the value from the corresponding setting in linter-ui-default, or 500 if that is unavaliable",
343
+
"type": "integer",
344
+
"default": 0,
345
+
"order": 210
346
+
},
347
+
"largeFileNoFollowCursor": {
348
+
"title": "Disable semantic view focus following text cursor on large files",
349
+
"description": "If a file is large, as defined by previous options, don't update semantic view focus on text cursor moves; use typescript:reveal-in-semantic-view command instead",
0 commit comments