refactor: CurSel.to_selection is internal
This commit is contained in:
parent
8ba6e1843a
commit
c7c271e903
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ pub const CurSel = struct {
|
||||||
return if (self.selection) |*sel| sel else unreachable;
|
return if (self.selection) |*sel| sel else unreachable;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn to_selection(self: *const Self, root: Buffer.Root, metrics: Buffer.Metrics) Selection {
|
fn to_selection(self: *const Self, root: Buffer.Root, metrics: Buffer.Metrics) Selection {
|
||||||
return switch (tui.get_selection_style()) {
|
return switch (tui.get_selection_style()) {
|
||||||
.normal => self.to_selection_normal(),
|
.normal => self.to_selection_normal(),
|
||||||
.inclusive => self.to_selection_inclusive(root, metrics),
|
.inclusive => self.to_selection_inclusive(root, metrics),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue