mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Merge 92ae31925f
into db187c4870
This commit is contained in:
commit
bb4b1c835c
2 changed files with 53 additions and 0 deletions
|
@ -158,6 +158,7 @@ where
|
|||
}
|
||||
helix_view::editor::StatusLineElement::Position => render_position,
|
||||
helix_view::editor::StatusLineElement::PositionPercentage => render_position_percentage,
|
||||
helix_view::editor::StatusLineElement::TreeSitterPath => render_tree_sitter_path,
|
||||
helix_view::editor::StatusLineElement::TotalLineNumbers => render_total_line_numbers,
|
||||
helix_view::editor::StatusLineElement::Separator => render_separator,
|
||||
helix_view::editor::StatusLineElement::Spacer => render_spacer,
|
||||
|
@ -381,6 +382,55 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
fn render_tree_sitter_path<F>(context: &mut RenderContext, write: F)
|
||||
where
|
||||
F: Fn(&mut RenderContext, String, Option<Style>) + Copy,
|
||||
{
|
||||
if let Some(syntax) = context.doc.syntax() {
|
||||
let text = context.doc.text().slice(..);
|
||||
|
||||
let pos = text.char_to_byte(
|
||||
context
|
||||
.doc
|
||||
.selection(context.view.id)
|
||||
.primary()
|
||||
.cursor(text),
|
||||
);
|
||||
let mut node = match syntax
|
||||
.tree()
|
||||
.root_node()
|
||||
.descendant_for_byte_range(pos, pos)
|
||||
{
|
||||
Some(node) => node,
|
||||
None => return,
|
||||
};
|
||||
|
||||
let mut scopes = Vec::new();
|
||||
|
||||
loop {
|
||||
match node.child_by_field_name("name") {
|
||||
Some(child) => {
|
||||
let child_id = text.byte_slice(child.byte_range());
|
||||
scopes.push(format!("\u{203A}{}", child_id));
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
|
||||
match node.parent() {
|
||||
Some(parent) => {
|
||||
node = parent;
|
||||
}
|
||||
None => {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
scopes.reverse();
|
||||
write(context, scopes.join(""), None);
|
||||
}
|
||||
}
|
||||
|
||||
fn render_file_line_ending<F>(context: &mut RenderContext, write: F)
|
||||
where
|
||||
F: Fn(&mut RenderContext, String, Option<Style>) + Copy,
|
||||
|
|
|
@ -597,6 +597,9 @@ pub enum StatusLineElement {
|
|||
/// The cursor position as a percent of the total file
|
||||
PositionPercentage,
|
||||
|
||||
// Path of tree sitter elements
|
||||
TreeSitterPath,
|
||||
|
||||
/// The total line numbers of the current file
|
||||
TotalLineNumbers,
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue