注释折叠的代码块会使它在Visual Studio代码中展开

时间:2018-11-27 15:02:40

标签: visual-studio-code commenting code-folding

假设我有一个简单的javascript方法。

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World!');
}).listen(8080);

如果我在Visual Studio代码中将其折叠并注释,则代码将自动展开。有办法阻止这种情况吗?

1 个答案:

答案 0 :(得分:0)

您似乎必须使用块注释来注释折叠的代码并保持折叠状态。

Shift - Alt - A