Files
aerc-inline-images/config/cmds.go
T
2026-04-07 19:54:54 -04:00

23 lines
249 B
Go

package config
import (
"os"
)
func EditorCmds() []string {
return []string{
Compose.Editor,
os.Getenv("EDITOR"),
"vi",
"nano",
}
}
func PagerCmds() []string {
return []string{
Viewer.Pager,
os.Getenv("PAGER"),
"less -Rc",
}
}