aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp
diff options
context:
space:
mode:
authorPhilipp Mildenberger2023-07-27 02:57:19 +0000
committerGitHub2023-07-27 02:57:19 +0000
commit8a28f3059398eec7b5496bb1088b4d9870e6eb7e (patch)
tree77cf35ee489ed5367dc2a1ac8b4a0600530ded37 /helix-lsp
parent262a595e5343c5afd0f2570859b63ebf4c12b0fa (diff)
Reformat with nightly rustfmt for better let-else formatting (#7721)
Diffstat (limited to 'helix-lsp')
-rw-r--r--helix-lsp/src/lib.rs2
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;