mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Simplify implementation of add_indent_level
.
Increase hybrid indent heuristic attempt limit to 4. Clarify the fallback logic in indent heuristic docs.
This commit is contained in:
parent
3e79a35656
commit
723a132bdf
2 changed files with 20 additions and 23 deletions
|
@ -65,7 +65,7 @@ Its settings will be merged with the configuration directory `config.toml` and t
|
||||||
| `workspace-lsp-roots` | Directories relative to the workspace root that are treated as LSP roots. Should only be set in `.helix/config.toml` | `[]` |
|
| `workspace-lsp-roots` | Directories relative to the workspace root that are treated as LSP roots. Should only be set in `.helix/config.toml` | `[]` |
|
||||||
| `default-line-ending` | The line ending to use for new documents. Can be `native`, `lf`, `crlf`, `ff`, `cr` or `nel`. `native` uses the platform's native line ending (`crlf` on Windows, otherwise `lf`). | `native` |
|
| `default-line-ending` | The line ending to use for new documents. Can be `native`, `lf`, `crlf`, `ff`, `cr` or `nel`. `native` uses the platform's native line ending (`crlf` on Windows, otherwise `lf`). | `native` |
|
||||||
| `insert-final-newline` | Whether to automatically insert a trailing line-ending on write if missing | `true` |
|
| `insert-final-newline` | Whether to automatically insert a trailing line-ending on write if missing | `true` |
|
||||||
| `indent-heuristic` | How the indentation for a newly inserted line is computed: `simple` just copies the indentation level from the previous line, `tree-sitter` computes the indentation based on the syntax tree and `hybrid` combines both approaches | `hybrid`
|
| `indent-heuristic` | How the indentation for a newly inserted line is computed: `simple` just copies the indentation level from the previous line, `tree-sitter` computes the indentation based on the syntax tree and `hybrid` combines both approaches. If the chosen heuristic is not available, a different one will be used as a fallback (the fallback order being `hybrid` -> `tree-sitter` -> `simple`). | `hybrid`
|
||||||
|
|
||||||
### `[editor.statusline]` Section
|
### `[editor.statusline]` Section
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::{
|
||||||
graphemes::{grapheme_width, tab_width_at},
|
graphemes::{grapheme_width, tab_width_at},
|
||||||
syntax::{IndentationHeuristic, LanguageConfiguration, RopeProvider, Syntax},
|
syntax::{IndentationHeuristic, LanguageConfiguration, RopeProvider, Syntax},
|
||||||
tree_sitter::Node,
|
tree_sitter::Node,
|
||||||
Rope, RopeGraphemes, RopeSlice,
|
Position, Rope, RopeGraphemes, RopeSlice,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Enum representing indentation style.
|
/// Enum representing indentation style.
|
||||||
|
@ -225,27 +225,24 @@ fn add_indent_level(
|
||||||
// Since the width of a tab depends on its offset, we cannot simply iterate over
|
// Since the width of a tab depends on its offset, we cannot simply iterate over
|
||||||
// the chars of `base_indent` in reverse until we have the desired indent reduction,
|
// the chars of `base_indent` in reverse until we have the desired indent reduction,
|
||||||
// instead we iterate over them twice in forward direction.
|
// instead we iterate over them twice in forward direction.
|
||||||
let mut base_indent_width: usize = 0;
|
let base_indent_rope = RopeSlice::from(base_indent.as_str());
|
||||||
for c in base_indent.chars() {
|
#[allow(deprecated)]
|
||||||
base_indent_width += match c {
|
let base_indent_width =
|
||||||
'\t' => tab_width_at(base_indent_width, tab_width as u16),
|
crate::visual_coords_at_pos(base_indent_rope, base_indent_rope.len_chars(), tab_width)
|
||||||
// This is only true since `base_indent` consists only of tabs and spaces
|
.col;
|
||||||
_ => 1,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
let target_indent_width = base_indent_width
|
let target_indent_width = base_indent_width
|
||||||
.saturating_sub((-added_indent_level) as usize * indent_style.indent_width(tab_width));
|
.saturating_sub((-added_indent_level) as usize * indent_style.indent_width(tab_width));
|
||||||
let mut reduced_indent_width = 0;
|
#[allow(deprecated)]
|
||||||
for (i, c) in base_indent.char_indices() {
|
let char_end_idx = crate::pos_at_visual_coords(
|
||||||
if reduced_indent_width >= target_indent_width {
|
base_indent_rope,
|
||||||
base_indent.truncate(i);
|
Position {
|
||||||
return base_indent;
|
row: 0,
|
||||||
}
|
col: target_indent_width,
|
||||||
reduced_indent_width += match c {
|
},
|
||||||
'\t' => tab_width_at(base_indent_width, tab_width as u16),
|
tab_width,
|
||||||
_ => 1,
|
);
|
||||||
};
|
let byte_end_idx = base_indent_rope.char_to_byte(char_end_idx);
|
||||||
}
|
base_indent.truncate(byte_end_idx);
|
||||||
base_indent
|
base_indent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -959,7 +956,7 @@ pub fn indent_for_newline(
|
||||||
line_before_end_pos,
|
line_before_end_pos,
|
||||||
true,
|
true,
|
||||||
) {
|
) {
|
||||||
if let IndentationHeuristic::Hybrid = indent_heuristic {
|
if *indent_heuristic == IndentationHeuristic::Hybrid {
|
||||||
// We want to compute the indentation not only based on the
|
// We want to compute the indentation not only based on the
|
||||||
// syntax tree but also on the actual indentation of a previous
|
// syntax tree but also on the actual indentation of a previous
|
||||||
// line. This makes indentation computation more resilient to
|
// line. This makes indentation computation more resilient to
|
||||||
|
@ -969,7 +966,7 @@ pub fn indent_for_newline(
|
||||||
// make sense, e.g. if it has a different alignment than the new line.
|
// make sense, e.g. if it has a different alignment than the new line.
|
||||||
// In order to prevent edge cases with long running times, we only try
|
// In order to prevent edge cases with long running times, we only try
|
||||||
// a constant number of (non-empty) lines.
|
// a constant number of (non-empty) lines.
|
||||||
const MAX_ATTEMPTS: usize = 2;
|
const MAX_ATTEMPTS: usize = 4;
|
||||||
let mut num_attempts = 0;
|
let mut num_attempts = 0;
|
||||||
for line_idx in (0..=line_before).rev() {
|
for line_idx in (0..=line_before).rev() {
|
||||||
let line = text.line(line_idx);
|
let line = text.line(line_idx);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue