当当前目录中存在 pom.xml 时,将键映射到命令?
仅当当前目录中存在 pom.xml 时,才可以在 vim 中映射键吗?我知道打开某种文件类型时可以映射键,但我不知道如何根据文件的存在来映射键。
我想向 vim 添加一些键绑定以帮助开发 Maven 项目。例如,当我想浏览依赖项的来源时:
mvn dependency:unpack-dependencies
-Dclassifier=sources
-Dmdep.failOnMissingClassifierArtifact=false
is it possible to map keys in vim only when a pom.xml is present in the current directory? I know it is possible to map keys when a certain file type is open, but I can't figure out how to map keys based on the presence of a file.
I could like to add some keybindings to vim to aid in development of maven projects. For example, when I want to browse the sources of dependencies:
mvn dependency:unpack-dependencies
-Dclassifier=sources
-Dmdep.failOnMissingClassifierArtifact=false
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将这样的内容放入你的 vimrc 中:
Put something like this into your vimrc:
这里有一些 autocommand 的示例
你可以在那里获得灵感。即:
here you have some examples with autocommand
You can get inspiration there. i.e. from this: