Module: Clacky::RichUI::ViewportSelectionPatch

Defined in:
lib/clacky/rich_ui.rb

Instance Method Summary collapse

Instance Method Details

#highlight_display_range(line, start_col, end_col) ⇒ Object



11
12
13
14
15
16
# File 'lib/clacky/rich_ui.rb', line 11

def highlight_display_range(line, start_col, end_col)
  end_col = [end_col, visible_text_width(line.to_s.rstrip)].min
  return line if end_col <= start_col

  super(line, start_col, end_col)
end