mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
11 lines
322 B
Go
11 lines
322 B
Go
package hub
|
|
|
|
// DrawOptions controls how the screen is drawn.
|
|
type DrawOptions struct {
|
|
Prompt bool // draw only the prompt
|
|
PurgeCache bool // purge display cache only
|
|
RunningQuery bool // a query is currently running
|
|
DisableCache bool // disable display cache
|
|
ForceSync bool // force a full screen sync
|
|
}
|