mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-26 03:13:29 +04:00
Remove indent style status-line display for now.
This commit is contained in:
parent
0a5580aa21
commit
4faf1d3bf4
@ -500,18 +500,18 @@ pub fn render_statusline(
|
|||||||
|
|
||||||
// Compute the individual info strings.
|
// Compute the individual info strings.
|
||||||
let diag_count = format!("{}", doc.diagnostics().len());
|
let diag_count = format!("{}", doc.diagnostics().len());
|
||||||
let indent_info = match doc.indent_style {
|
// let indent_info = match doc.indent_style {
|
||||||
IndentStyle::Tabs => "tabs",
|
// IndentStyle::Tabs => "tabs",
|
||||||
IndentStyle::Spaces(1) => "spaces:1",
|
// IndentStyle::Spaces(1) => "spaces:1",
|
||||||
IndentStyle::Spaces(2) => "spaces:2",
|
// IndentStyle::Spaces(2) => "spaces:2",
|
||||||
IndentStyle::Spaces(3) => "spaces:3",
|
// IndentStyle::Spaces(3) => "spaces:3",
|
||||||
IndentStyle::Spaces(4) => "spaces:4",
|
// IndentStyle::Spaces(4) => "spaces:4",
|
||||||
IndentStyle::Spaces(5) => "spaces:5",
|
// IndentStyle::Spaces(5) => "spaces:5",
|
||||||
IndentStyle::Spaces(6) => "spaces:6",
|
// IndentStyle::Spaces(6) => "spaces:6",
|
||||||
IndentStyle::Spaces(7) => "spaces:7",
|
// IndentStyle::Spaces(7) => "spaces:7",
|
||||||
IndentStyle::Spaces(8) => "spaces:8",
|
// IndentStyle::Spaces(8) => "spaces:8",
|
||||||
_ => "indent:ERROR",
|
// _ => "indent:ERROR",
|
||||||
};
|
// };
|
||||||
let position_info = {
|
let position_info = {
|
||||||
let pos = coords_at_pos(doc.text().slice(..), doc.selection(view.id).cursor());
|
let pos = coords_at_pos(doc.text().slice(..), doc.selection(view.id).cursor());
|
||||||
format!("{}:{}", pos.row + 1, pos.col + 1) // convert to 1-indexing
|
format!("{}:{}", pos.row + 1, pos.col + 1) // convert to 1-indexing
|
||||||
@ -519,9 +519,9 @@ pub fn render_statusline(
|
|||||||
|
|
||||||
// Render them to the status line together.
|
// Render them to the status line together.
|
||||||
let right_side_text = format!(
|
let right_side_text = format!(
|
||||||
"{} {} {} ",
|
"{} {} ",
|
||||||
&diag_count[..diag_count.len().min(4)],
|
&diag_count[..diag_count.len().min(4)],
|
||||||
indent_info,
|
// indent_info,
|
||||||
position_info
|
position_info
|
||||||
);
|
);
|
||||||
let text_len = right_side_text.len() as u16;
|
let text_len = right_side_text.len() as u16;
|
||||||
|
Loading…
Reference in New Issue
Block a user