程序员的“文档模板”是不是? Windows 上存在标签吗?
我想知道(如果可能)是否有一个程序/工具/实用程序,当我创建新文件并为其提供扩展名时,它会自动创建适当的标签?
例如,我创建的一个名为 index.php
的新文件将在内部自动生成适当的标签:
<?php
?>
我希望您明白这一点。
任何与此相关的信息都会有所帮助。
I was wondering (if possible) if there was a program/tool/utility that when I create a new file and provide it with an extension that it creates the appropriate tags automatically?
For example, a new file I create called index.php
would have the appropriate tags auto-generated inside:
<?php
?>
I hope you get the idea.
Any information regarding this would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道有什么便携式实用程序,但在 Windows 上,有一个内置功能可以做到这一点。
从
regedit
,转到您的HKCR/.your-extension
(例如HKCR/.php
)。(默认)
值将包含文件类型类 - 转到HKCR/.your-extension/the-filetype-class
或HKCR/the-filetype- class
(两者都可以),然后在内部创建一个名为ShellNew
的键。在该键中,创建一个名为FileName
的字符串值,并将模板文件的文件路径分配给它。现在,将创建具有此特定扩展名的所有新文件,其中包含模板的内容。
这是更详细的教程。
I don't know about a portable utility, but on Windows, there's a built-in feature that does it.
From
regedit
, go to yourHKCR/.your-extension
(e.g.HKCR/.php
). the(Default)
value will contain the filetype class - go to eitherHKCR/.your-extension/the-filetype-class
orHKCR/the-filetype-class
(either will do), then inside create a key namedShellNew
. In the key, create a string value calledFileName
and assign to it the file path of your template file.Now all new files with this particular extension will be created containing the contents of your template.
Here's a more detailed tutorial.
如果您使用 GNOME 运行 Linux,也许 http://tombuntu.com/index.php/2008/02/13/add-your-document-templates-to-gnome/ 就是您所需要的。
其他环境中可能也有类似的情况。
If you run Linux with GNOME, maybe http://tombuntu.com/index.php/2008/02/13/add-your-document-templates-to-gnome/ is what you need.
There is probably something similar in other environments.