imgbot
Dmitry Sharshakov 3 years ago
parent f247858055
commit 53ee57f84a
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473

@ -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);

Loading…
Cancel
Save