diff options
author | Blaž Hrastnik | 2021-01-19 07:16:15 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-01-19 07:16:15 +0000 |
commit | 7c99ff58fdc4c5217f86e59d2b3ec0df10f79aaa (patch) | |
tree | c5a5480ef22590813058f451480f31b618c94669 /helix-core/src/indent.rs | |
parent | f1539cc86680935a0b2a5bbd16c64b110687cdf7 (diff) |
nix: include rust-src so rust-analyzer works correctly.
Diffstat (limited to 'helix-core/src/indent.rs')
-rw-r--r-- | helix-core/src/indent.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/src/indent.rs b/helix-core/src/indent.rs index d75038d2..e708b317 100644 --- a/helix-core/src/indent.rs +++ b/helix-core/src/indent.rs @@ -135,8 +135,8 @@ fn calculate_indentation(node: Option<Node>, newline: bool) -> usize { // let len = 1; // }) - if ((indent_scopes.contains(&parent_kind) && true) // not_first_or_last_sibling - || (indent_except_first_scopes.contains(&parent_kind) && true)) + if (indent_scopes.contains(&parent_kind) // && not_first_or_last_sibling + || indent_except_first_scopes.contains(&parent_kind)) && !starts_same_line { // println!("is_scope {}", parent_kind); |