我正在尝试使用 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 做到这一点)