mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-29 05:16:29 -04:00
11 lines
263 B
Go
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
|
|
}
|