如何更改 Geany 中的注释语法
在 Geany 中,编辑 PHP 脚本时,当您选择行并按 control-e 时,所选行将通过用“/* ... */”包裹来进行注释。有没有办法改变这种行为,以便它在每行前面放置一个“//”?
我使用过的所有其他 IDE 都使用“//”(Eclipse、Netbeans、Textmate 等)。
In Geany, editing PHP scripts, when you select lines and press control-e, the selected lines are commented by being wrapped in "/* ... */". Is there a way to change this behaviour so that it instead puts a "//" in front of each line?
All the other IDEs that I've used make use of "//" (Eclipse, Netbeans, Textmate, etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注释字符等设置由文件类型定义文件控制。假设您的脚本以
.php
结尾,您应该找到默认的系统范围文件类型定义文件filetypes.php
,并将其复制到您的filedefs
目录位于您的用户配置目录中。然后您可以根据需要对其进行修改。手册中对此进行了详细解释(上面的链接)。
Settings like comment characters are controlled by filetype definition files. Assuming your scripts end in
.php
, you should find the default system-wide filetype definition filefiletypes.php
, and copy it to yourfiledefs
directory in your user configuration directory. Then you can modify it as necessary.This is all explained in detail in the manual (link above).