vim: Fix e/E with inlay hints (#11616)
Co-Authored-By: Sergey <sergey.b@hey.com> Fixes: #7046 Release Notes: - vim: Fixes e/E with inlay hints (#7046) Co-authored-by: Sergey <sergey.b@hey.com>
This commit is contained in:
parent
f0af508ae5
commit
8b5a0cff10
2 changed files with 5 additions and 1 deletions
|
@ -721,6 +721,10 @@ impl DisplaySnapshot {
|
|||
DisplayPoint(clipped)
|
||||
}
|
||||
|
||||
pub fn clip_ignoring_line_ends(&self, point: DisplayPoint, bias: Bias) -> DisplayPoint {
|
||||
DisplayPoint(self.block_snapshot.clip_point(point.0, bias))
|
||||
}
|
||||
|
||||
pub fn clip_at_line_end(&self, point: DisplayPoint) -> DisplayPoint {
|
||||
let mut point = point.0;
|
||||
if point.column == self.line_len(point.row) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue