In order to pass in options like `--new-window` to an external viewer like `firefox`, optional args can now be defined in configuration. See config-example.yaml for an example.
9 lines
135 B
Go
9 lines
135 B
Go
package cui
|
|
|
|
import "github.com/jroimartin/gocui"
|
|
|
|
const (
|
|
selectionBgColor = gocui.ColorWhite
|
|
selectionFgColor = gocui.ColorBlack
|
|
)
|