mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 10:56:19 +04:00
chore(view): remove indent_unit helper fn (#4389)
This commit is contained in:
parent
36f97b6aad
commit
4cff625054
@ -3022,7 +3022,7 @@ pub fn insert_tab(cx: &mut Context) {
|
|||||||
// TODO: round out to nearest indentation level (for example a line with 3 spaces should
|
// TODO: round out to nearest indentation level (for example a line with 3 spaces should
|
||||||
// indent by one to reach 4 spaces).
|
// indent by one to reach 4 spaces).
|
||||||
|
|
||||||
let indent = Tendril::from(doc.indent_unit());
|
let indent = Tendril::from(doc.indent_style.as_str());
|
||||||
let transaction = Transaction::insert(
|
let transaction = Transaction::insert(
|
||||||
doc.text(),
|
doc.text(),
|
||||||
&doc.selection(view.id).clone().cursors(doc.text().slice(..)),
|
&doc.selection(view.id).clone().cursors(doc.text().slice(..)),
|
||||||
@ -3122,7 +3122,7 @@ pub fn delete_char_backward(cx: &mut Context) {
|
|||||||
let count = cx.count();
|
let count = cx.count();
|
||||||
let (view, doc) = current_ref!(cx.editor);
|
let (view, doc) = current_ref!(cx.editor);
|
||||||
let text = doc.text().slice(..);
|
let text = doc.text().slice(..);
|
||||||
let indent_unit = doc.indent_unit();
|
let indent_unit = doc.indent_style.as_str();
|
||||||
let tab_size = doc.tab_width();
|
let tab_size = doc.tab_width();
|
||||||
let auto_pairs = doc.auto_pairs(cx.editor);
|
let auto_pairs = doc.auto_pairs(cx.editor);
|
||||||
|
|
||||||
@ -3647,7 +3647,7 @@ fn indent(cx: &mut Context) {
|
|||||||
let lines = get_lines(doc, view.id);
|
let lines = get_lines(doc, view.id);
|
||||||
|
|
||||||
// Indent by one level
|
// Indent by one level
|
||||||
let indent = Tendril::from(doc.indent_unit().repeat(count));
|
let indent = Tendril::from(doc.indent_style.as_str().repeat(count));
|
||||||
|
|
||||||
let transaction = Transaction::change(
|
let transaction = Transaction::change(
|
||||||
doc.text(),
|
doc.text(),
|
||||||
|
@ -1052,14 +1052,6 @@ pub fn tab_width(&self) -> usize {
|
|||||||
.map_or(4, |config| config.tab_width) // fallback to 4 columns
|
.map_or(4, |config| config.tab_width) // fallback to 4 columns
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns a string containing a single level of indentation.
|
|
||||||
///
|
|
||||||
/// TODO: we might not need this function anymore, since the information
|
|
||||||
/// is conveniently available in `Document::indent_style` now.
|
|
||||||
pub fn indent_unit(&self) -> &'static str {
|
|
||||||
self.indent_style.as_str()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn changes(&self) -> &ChangeSet {
|
pub fn changes(&self) -> &ChangeSet {
|
||||||
&self.changes
|
&self.changes
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user