aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 49d6bf3f..e35b5d51 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -1932,10 +1932,10 @@ mod cmd {
use helix_lsp::block_on;
let condition = args.join(" ");
- let condition = if condition.len() > 0 {
- Some(condition)
- } else {
+ let condition = if condition.is_empty() {
None
+ } else {
+ Some(condition)
};
let (view, doc) = current!(cx.editor);