Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Vim 作为 Go 编码的编辑器。我在我的 Vim 中安装了 vim-go。我想知道是否有一种方法可以自动格式化函数名称以使其大写。例如,而不是类型
fmt.Println("Go is fun")
我只想输入
fmt.println("Go is fun")
并产生结果fmt.Println
fmt.Println
它可以帮助我顺利地输入代码,避免让我的右手小指触摸到方法名称的 shift 按钮。