src.elv.sh/pkg/cli/term.Cell.Style (field)

11 uses

	src.elv.sh/pkg/cli/term (current package)
		buffer.go#L14: 	Style string
		buffer.go#L162: 			if cell.Style != lastStyle {
		buffer.go#L165: 					sb.WriteString("\033[" + cell.Style + "m")
		buffer.go#L166: 				case cell.Style == "":
		buffer.go#L169: 					sb.WriteString("\033[;" + cell.Style + "m")
		buffer.go#L171: 				lastStyle = cell.Style
		writer.go#L113: 			switchStyle(c.Style)

	src.elv.sh/pkg/edit
		buf_to_html.go#L19: 			if c.Style != style {
		buf_to_html.go#L23: 				if c.Style == "" {
		buf_to_html.go#L27: 					for _, c := range strings.Split(c.Style, ";") {
		buf_to_html.go#L34: 				style = c.Style