如何让 scalaz IDEA 实时模板适用于符号方法?
scalaz 中的许多方法都有符号 unicode 等效项,例如 forever
和 < code>∞ (当然,我的做法是错误的,符号方法确实有 ASCII 等价物)。
该项目包含一个 实时模板 XML 文件 IDEA 因此这些可以自动完成,我相信通过使用forever+TAB
快捷方式(在上面的实例中)。
不过,我不知道如何将此实时模板导入 IDEA 并实际使用它。我怎样才能做到这一点?
Many of the methods in scalaz have symbolic unicode equivalents, such as forever
and ∞
(of course, I have this the wrong way round, the symbolic methods really have ASCII equivalents).
The project contains a live templates XML file for IDEA so these can be auto-completed, I believe by using the forever+TAB
shortcut (in the above instance).
I can't figure out how to import this live template into IDEA and actually use it, though. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Live Templates XML 文件应放置在 IDEA 配置目录的 templates 子目录下。
IDEA 配置文件夹位置取决于您的平台:
其中 XX 是 IDEA 版本(IDEA 9.x 为 90)。
确保在将 XML 复制到模板目录之前关闭 IDEA。
Live Templates XML file should be placed under IDEA configuration directory, templates subdirectory.
IDEA configuration folder location would depend on your platform:
Where XX is IDEA version (90 for IDEA 9.x).
Make sure to close IDEA before copying the XML into the templates directory.