class flux::FindHistory

sys::Obj
  flux::FindHistory

@Serializable

Source

FindHistory maintains the most recent find text queries for the entire application.

dir

Uri[] dir()

Source

Get a readonly copy of all the find directories in the history. The first item is the most recent query and the last item is the oldest query.

dirAsStr

Str[] dirAsStr()

Source

Convenience to return dir as a Str[].

find

Str[] find()

Source

Get a readonly copy of all the find text in the history. The first item is the most recent query and the last item is the oldest query.

load

static FindHistory load()

Source

Convenience for loading from "session/find"

matchCase

Bool matchCase := false

Source

Get whether find should match the case of the query term.

pushDir

This pushDir(Uri u)

Source

Log the given find directory into the history. Return this.

pushFind

This pushFind(Str s)

Source

Log the given find text into the history. Return this.

save

This save()

Source

Convenience for save to "session/history". Return this.