aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit/src/lib.rs
blob: e656260c73d587eeb4bf07108cceb05c9089f699 (plain)
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
//! FIXME: write short doc here

mod text_edit;

use text_size::{TextRange, TextSize};

pub use crate::text_edit::{TextEdit, TextEditBuilder};

/// Must not overlap with other `AtomTextEdit`s
#[derive(Debug, Clone)]
pub struct AtomTextEdit {
    /// Refers to offsets in the original text
    pub delete: TextRange,
    pub insert: String,
}

impl AtomTextEdit {
    pub fn replace(range: TextRange, replace_with: String) -> AtomTextEdit {
        AtomTextEdit { delete: range, insert: replace_with }
    }

    pub fn delete(range: TextRange) -> AtomTextEdit {
        AtomTextEdit::replace(range, String::new())
    }

    pub fn insert(offset: TextSize, text: String) -> AtomTextEdit {
        AtomTextEdit::replace(TextRange::empty(offset), text)
    }

    pub fn apply(&self, mut text: String) -> String {
        let start: usize = self.delete.start().into();
        let end: usize = self.delete.end().into();
        text.replace_range(start..end, &self.insert);
        text
    }
}