vs-code "JSON: Max Item Computed" 设置的实际作用是什么?
what does the vs-code "JSON: Max Item Computed" setting actually do?
vs-codes "JSON: Max Item Computed" 设置是什么意思?
我在查看 JSON 文件时收到来自 vs-code 的通知,其中指定:
"document symbols have been limited to 5000 items"
我没有立即看到任何变化,并假设符号指的是我的 JSON 对象中 items/records 的数量,直到我查看 JSON 文件并发现它包含超过 10.000 items/records。我检查了这个 vs-code 设置的描述,其中指出
"The maximum number of outline symbols and folding regions computed (limited for performance reasons)."
这个描述让我不明白这个设置的用途。
我想知道这个设置实际上会影响什么,以及 JSON 中的以下内容是什么意思 - 用简单的术语让我的笨蛋也能理解:
- 文档符号
- 轮廓符号
- 折叠区域计算
Image of the vs-code notification
link 是另一个 Whosebug 问题,它只询问适当的值来让这个设置成为,并提出关于 JSON 语言的另一点支持这只会加深我的困惑。
This link 也提到了设置,但没有说明它的作用,以及它如何影响人们的工作。
Essentially this is referring to the folding icons that allow you to
minimize/expand parts of the json for read ability. It doesn't affect
the actual content of the loaded file at all.
code.visualstudio.com/Docs/languages/json
– 维克多·里德
Victor Learned 的评论已回答问题。谢谢
vs-codes "JSON: Max Item Computed" 设置是什么意思?
我在查看 JSON 文件时收到来自 vs-code 的通知,其中指定:
"document symbols have been limited to 5000 items"
我没有立即看到任何变化,并假设符号指的是我的 JSON 对象中 items/records 的数量,直到我查看 JSON 文件并发现它包含超过 10.000 items/records。我检查了这个 vs-code 设置的描述,其中指出
"The maximum number of outline symbols and folding regions computed (limited for performance reasons)."
这个描述让我不明白这个设置的用途。
我想知道这个设置实际上会影响什么,以及 JSON 中的以下内容是什么意思 - 用简单的术语让我的笨蛋也能理解:
- 文档符号
- 轮廓符号
- 折叠区域计算
Image of the vs-code notification
This link 也提到了设置,但没有说明它的作用,以及它如何影响人们的工作。
Essentially this is referring to the folding icons that allow you to minimize/expand parts of the json for read ability. It doesn't affect the actual content of the loaded file at all. code.visualstudio.com/Docs/languages/json
– 维克多·里德
Victor Learned 的评论已回答问题。谢谢