select

Function select 

Source
pub fn select(mode: SelectionMode) -> CellQuery
Expand description

Creates a new cell query with the specified selection mode.

ยงExample

use beamterm_renderer::{select, SelectionMode};

let query = select(SelectionMode::Block)
    .start((0, 0))
    .end((10, 5))
    .trim_trailing_whitespace(true);