Files
libmutton/src/backend/initWIN.go
T

11 lines
263 B
Go

//go:build windows
package backend
const FallbackEditor = "nvim" // since there is no pre-installed CLI editor on Windows, default to the most popular one
// textEditorFallback returns FallbackEditor
func textEditorFallback() string {
return FallbackEditor
}