VS Code 不允许我保存 go 测试文件
VS Code won't let me save a go test file
我正在尝试使用 VS Code 保存文件。
更新
我想我应该问一下,无论代码是什么,您可以在按下 Ctrl S 时强制 VS Code 保存文件,而不是编辑文件然后保存它?
====
VS Code 在此处报告问题:
import (
"fmt"
"testing"
"github.com/gruntwork-io/terratest/modules/terraform"
)
并输出:
could not import github.com/gruntwork-io/terratest/modules/terraform (cannot find package "github.com/gruntwork-io/terratest/modules/terraform" in any of
/usr/local/go/src/github.com/gruntwork-io/terratest/modules/terraform (from $GOROOT)
/home/snowcrash/go/src/github.com/gruntwork-io/terratest/modules/terraform
当我按 Ctrl S 时,VS Code 会删除该行。
这可能是个问题,但我希望能够保存并测试它。
我猜:
- 如何保存文件?
(注意我可以用 vim
来做,但想知道你是如何用 VS Code 做的)
99.9% 的时间你都可以使用 VS Code。
对于那 0.1% 的时间,当您在使用 VS Code 保存文件时遇到问题并且没有时间浪费几个小时来找出原因,只需使用 vim.
我正在尝试使用 VS Code 保存文件。
更新
我想我应该问一下,无论代码是什么,您可以在按下 Ctrl S 时强制 VS Code 保存文件,而不是编辑文件然后保存它?
====
VS Code 在此处报告问题:
import (
"fmt"
"testing"
"github.com/gruntwork-io/terratest/modules/terraform"
)
并输出:
could not import github.com/gruntwork-io/terratest/modules/terraform (cannot find package "github.com/gruntwork-io/terratest/modules/terraform" in any of
/usr/local/go/src/github.com/gruntwork-io/terratest/modules/terraform (from $GOROOT)
/home/snowcrash/go/src/github.com/gruntwork-io/terratest/modules/terraform
当我按 Ctrl S 时,VS Code 会删除该行。
这可能是个问题,但我希望能够保存并测试它。
我猜:
- 如何保存文件?
(注意我可以用 vim
来做,但想知道你是如何用 VS Code 做的)
99.9% 的时间你都可以使用 VS Code。
对于那 0.1% 的时间,当您在使用 VS Code 保存文件时遇到问题并且没有时间浪费几个小时来找出原因,只需使用 vim.