Deletes the current selection.
()
| 960 | * Deletes the current selection. |
| 961 | */ |
| 962 | private void del() { |
| 963 | final int s = Math.min(start, end), e = Math.max(start, end), ts = size(); |
| 964 | text(new ByteList(ts - e + s).add(text, 0, s).add(text, e, ts).finish()); |
| 965 | pos = s; |
| 966 | } |
| 967 | |
| 968 | /** |
| 969 | * Deletes lines. |