如何注释掉 vhosts 文件中的文本块?

发布于 2024-12-20 19:00:37 字数 60 浏览 1 评论 0原文

如何注释掉 vhosts 文件中的文本块?

我是否必须在每一行前面添加井号/井号 (#)?

How do you comment out a block of text in the vhosts file?

Do I have to put pound/hash symbols (#) in front of EVERY line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素手挽清风 2024-12-27 19:00:37

是的,您必须将井号/井号 (#) 放在您想要注释掉的所有行前面。没有“块评论”标签/符号。

某些文本编辑器具有列模式编辑功能,这意味着您可以选择多行并同时编辑所有行中的文本。您可以使用此功能在所选行前面插入 # 符号。

Yes, you will have to put pound/hash symbols (#) in front of ALL the lines you want commented out. There are no 'block comments' tag/symbols.

Some text editors have column-mode editing, which means you can select multiple lines and edit text in all of them at the same time. You can use this feature to insert the # symbol in front of the lines you selected.

不忘初心 2024-12-27 19:00:37

这不是解决方案,而是解决方法。您可以将要注释的代码放在 IfDefine 块中,这样除非定义了哑变量,否则它将被忽略:

<IfDefine IgnoreBlockComment>
...
</IfDefine>

来源:https://serverfault.com/a/414428

This is not a solution but a workaround. You can put the code you want to comment inside an IfDefine block, so it will be ignored unless a dumb variable is defined:

<IfDefine IgnoreBlockComment>
...
</IfDefine>

Source: https://serverfault.com/a/414428

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文