程序员的“文档模板”是不是? Windows 上存在标签吗?

发布于 2024-08-25 16:43:48 字数 222 浏览 4 评论 0原文

我想知道(如果可能)是否有一个程序/工具/实用程序,当我创建新文件并为其提供扩展名时,它会自动创建适当的标签?

例如,我创建的一个名为 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 技术交流群。

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

发布评论

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

评论(2

野生奥特曼 2024-09-01 16:43:48

我不知道有什么便携式实用程序,但在 Windows 上,有一个内置功能可以做到这一点。

regedit,转到您的HKCR/.your-extension(例如HKCR/.php)。 (默认) 值将包含文件类型类 - 转到 HKCR/.your-extension/the-filetype-classHKCR/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 your HKCR/.your-extension (e.g. HKCR/.php). the (Default) value will contain the filetype class - go to either HKCR/.your-extension/the-filetype-class or HKCR/the-filetype-class (either will do), then inside create a key named ShellNew. In the key, create a string value called FileName 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.

§对你不离不弃 2024-09-01 16:43:48

如果您使用 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.

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