自动扩展 NERDTree 中的 Java 目录结构
按照惯例,Java 对目录非常热衷。因此,我当前的 Grails 项目中的所有代码都嵌套了 5 个目录,例如...
~controllers
~com
~companyname
~teamname
~productname
|-[code actually here]
每个核心 Grails 目录(services、taglib、unit-tests)下都有类似的文件夹结构,这意味着需要大量点击 o和 j 重复。
有什么聪明的方法可以将其自动化并映射到组合键吗?
Java by convention is pretty keen on directories. Because of this, all the code in my current Grails project is nested 5 directories deep, e.g....
~controllers
~com
~companyname
~teamname
~productname
|-[code actually here]
There's a similar folder structure under every core Grails directory (services, taglib, unit-tests), which means an awful lot of hitting o and j repeatedly.
Is there any clever way this can be automated and mapped to a key combination?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NERD Tree 帮助有一种巧妙的方法:
O
(移位)递归地打开一个节点。要了解 NERDTree 按键映射,请在 NERD Tree 窗口中按
?
。There is a clever way using NERD Tree help:
O
(shifted) recursively opens a node.To know NERDTree key mappings, press
?
when in NERD Tree window.