假设我有一个简单的javascript方法。
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World!');
}).listen(8080);
如果我在Visual Studio代码中将其折叠并注释,则代码将自动展开。有办法阻止这种情况吗?
答案 0 :(得分:0)
您似乎必须使用块注释来注释折叠的代码并保持折叠状态。
Shift - Alt - A