diff options
author | Philipp Mildenberger | 2023-07-27 02:57:19 +0000 |
---|---|---|
committer | GitHub | 2023-07-27 02:57:19 +0000 |
commit | 8a28f3059398eec7b5496bb1088b4d9870e6eb7e (patch) | |
tree | 77cf35ee489ed5367dc2a1ac8b4a0600530ded37 /helix-lsp/src/lib.rs | |
parent | 262a595e5343c5afd0f2570859b63ebf4c12b0fa (diff) |
Reformat with nightly rustfmt for better let-else formatting (#7721)
Diffstat (limited to 'helix-lsp/src/lib.rs')
-rw-r--r-- | helix-lsp/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index 90f0c3fd..d29a2144 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -435,7 +435,7 @@ pub mod util { } let tabstops = tabstops.first().filter(|tabstops| !tabstops.is_empty()); - let Some(tabstops) = tabstops else{ + let Some(tabstops) = tabstops else { // no tabstop normal mapping mapped_selection.push(range); continue; |