Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp-M committed Feb 14, 2023
1 parent a1af37e commit 9461d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-term/src/commands/lsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ pub fn workspace_symbol_picker(cx: &mut Context) {
Some(language_server) => language_server,
None => {
editor.set_error("Language server is not available");
return async { Ok(vec![]) }.boxed()
},
return async { Ok(vec![]) }.boxed();
}
};
let symbol_request = match language_server.workspace_symbols(pattern.to_string()) {
Some(future) => future,
Expand Down

0 comments on commit 9461d31

Please sign in to comment.