Convert the visual cursor_pos to a raw position for rendering. Enters empty style tags at the cursor boundary.
(&self)
| 1129 | /// Convert the visual cursor_pos to a raw position for rendering. |
| 1130 | /// Enters empty style tags at the cursor boundary. |
| 1131 | pub fn cursor_pos_raw(&self) -> usize { |
| 1132 | styling::cursor_to_raw_for_insertion(&self.text, self.cursor_pos) |
| 1133 | } |
| 1134 | |
| 1135 | /// Convert the visual selection_anchor to a raw position for rendering. |
| 1136 | pub fn selection_anchor_raw(&self) -> Option<usize> { |
no test coverage detected