1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/// Text ropey (ropey) is used for text editor buffers in order to
/// back text-buffer and handle large amounts of texts
/// and memory-incoherent edits
///
///
/// This file provides structure and implementations for large amounts of text-editing
/// using the `ropey` package.
use Rope;
/// Implementation functions for the Editor Buffer and passing data through lines
///
/// # Arguments
///
/// - `text` (`&str`) - Passed argument text used to perform actions.