mirror of https://github.com/helix-editor/helix
added comments to ViewAreas
parent
775660ce1f
commit
8cf9e6c2b9
|
@ -27,7 +27,9 @@ const JUMP_LIST_CAPACITY: usize = 30;
|
||||||
|
|
||||||
#[derive(Debug, Clone, Default)]
|
#[derive(Debug, Clone, Default)]
|
||||||
pub struct ViewAreas {
|
pub struct ViewAreas {
|
||||||
|
/// left-hand nullspace area
|
||||||
pub left: Rect,
|
pub left: Rect,
|
||||||
|
/// right-hand nullspace area
|
||||||
pub right: Rect,
|
pub right: Rect,
|
||||||
pub gutter: Rect,
|
pub gutter: Rect,
|
||||||
pub text: Rect,
|
pub text: Rect,
|
||||||
|
|
Loading…
Reference in New Issue