我在Vagrant文件中有以下代码:
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing 'localhost:8080' will access port 80 on the guest machine.
config.vm.network :forwarded_port, guest: 9999, host: 9998
config.vm.network :forwarded_port, guest: 3500, host: 3502
此代码运行正常,但Intellij认为这是一个错误。我已经安装了一个Vagrant plugin,希望它可以解决问题,但事实并非如此。
使用Vagrant时,如何让Intellij不将以下两行标记为错误?
答案 0 :(得分:0)
您的Vagrantfile是否与任何特定类型相关联(您可以在编辑器>文件类型下查看您的偏好设置)
如果是这种情况,您可以更改为关联作为文本文件,IntelliJ不会抱怨。
如果你不喜欢使用命令行和vagrant命令,vagrant插件允许交互(启动/停止...),但它不支持Vagrantfile