mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Reformat with nightly rustfmt for better let-else formatting (#7721)
This commit is contained in:
parent
262a595e53
commit
8a28f30593
@ -106,12 +106,16 @@ fn find_pair(
|
|||||||
for close in
|
for close in
|
||||||
iter::successors(node.next_sibling(), |node| node.next_sibling()).take(MATCH_LIMIT)
|
iter::successors(node.next_sibling(), |node| node.next_sibling()).take(MATCH_LIMIT)
|
||||||
{
|
{
|
||||||
let Some(open) = as_close_pair(doc, &close) else { continue; };
|
let Some(open) = as_close_pair(doc, &close) else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
if find_pair_end(doc, Some(node), open, Backward).is_some() {
|
if find_pair_end(doc, Some(node), open, Backward).is_some() {
|
||||||
return doc.try_byte_to_char(close.start_byte()).ok();
|
return doc.try_byte_to_char(close.start_byte()).ok();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let Some(parent) = node.parent() else { break; };
|
let Some(parent) = node.parent() else {
|
||||||
|
break;
|
||||||
|
};
|
||||||
node = parent;
|
node = parent;
|
||||||
}
|
}
|
||||||
let node = tree.root_node().named_descendant_for_byte_range(pos, pos)?;
|
let node = tree.root_node().named_descendant_for_byte_range(pos, pos)?;
|
||||||
|
@ -389,7 +389,10 @@ macro_rules! map {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let Some((i, change)) = iter.next() else {
|
let Some((i, change)) = iter.next() else {
|
||||||
map!(|pos, _| (old_pos == pos).then_some(new_pos), self.changes.len());
|
map!(
|
||||||
|
|pos, _| (old_pos == pos).then_some(new_pos),
|
||||||
|
self.changes.len()
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -40,7 +40,9 @@ fn main() {
|
|||||||
.ok()
|
.ok()
|
||||||
.filter(|output| output.status.success())
|
.filter(|output| output.status.success())
|
||||||
.and_then(|x| String::from_utf8(x.stdout).ok())
|
.and_then(|x| String::from_utf8(x.stdout).ok())
|
||||||
else{ return; };
|
else {
|
||||||
|
return;
|
||||||
|
};
|
||||||
// If heads starts pointing at something else (different branch)
|
// If heads starts pointing at something else (different branch)
|
||||||
// we need to return
|
// we need to return
|
||||||
let head = Path::new(&git_dir).join("HEAD");
|
let head = Path::new(&git_dir).join("HEAD");
|
||||||
@ -55,7 +57,9 @@ fn main() {
|
|||||||
.ok()
|
.ok()
|
||||||
.filter(|output| output.status.success())
|
.filter(|output| output.status.success())
|
||||||
.and_then(|x| String::from_utf8(x.stdout).ok())
|
.and_then(|x| String::from_utf8(x.stdout).ok())
|
||||||
else{ return; };
|
else {
|
||||||
|
return;
|
||||||
|
};
|
||||||
let head_ref = Path::new(&git_dir).join(head_ref);
|
let head_ref = Path::new(&git_dir).join(head_ref);
|
||||||
if head_ref.exists() {
|
if head_ref.exists() {
|
||||||
println!("cargo:rerun-if-changed={}", head_ref.display());
|
println!("cargo:rerun-if-changed={}", head_ref.display());
|
||||||
|
@ -435,7 +435,7 @@ pub fn generate_transaction_from_snippet(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let tabstops = tabstops.first().filter(|tabstops| !tabstops.is_empty());
|
let tabstops = tabstops.first().filter(|tabstops| !tabstops.is_empty());
|
||||||
let Some(tabstops) = tabstops else{
|
let Some(tabstops) = tabstops else {
|
||||||
// no tabstop normal mapping
|
// no tabstop normal mapping
|
||||||
mapped_selection.push(range);
|
mapped_selection.push(range);
|
||||||
continue;
|
continue;
|
||||||
|
@ -730,7 +730,8 @@ pub fn code_action(cx: &mut Context) {
|
|||||||
|
|
||||||
// always present here
|
// always present here
|
||||||
let action = action.unwrap();
|
let action = action.unwrap();
|
||||||
let Some(language_server) = editor.language_server_by_id(action.language_server_id) else {
|
let Some(language_server) = editor.language_server_by_id(action.language_server_id)
|
||||||
|
else {
|
||||||
editor.set_error("Language Server disappeared");
|
editor.set_error("Language Server disappeared");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
@ -746,15 +747,20 @@ pub fn code_action(cx: &mut Context) {
|
|||||||
// we support lsp "codeAction/resolve" for `edit` and `command` fields
|
// we support lsp "codeAction/resolve" for `edit` and `command` fields
|
||||||
let mut resolved_code_action = None;
|
let mut resolved_code_action = None;
|
||||||
if code_action.edit.is_none() || code_action.command.is_none() {
|
if code_action.edit.is_none() || code_action.command.is_none() {
|
||||||
if let Some(future) = language_server.resolve_code_action(code_action.clone()) {
|
if let Some(future) =
|
||||||
|
language_server.resolve_code_action(code_action.clone())
|
||||||
|
{
|
||||||
if let Ok(response) = helix_lsp::block_on(future) {
|
if let Ok(response) = helix_lsp::block_on(future) {
|
||||||
if let Ok(code_action) = serde_json::from_value::<CodeAction>(response) {
|
if let Ok(code_action) =
|
||||||
|
serde_json::from_value::<CodeAction>(response)
|
||||||
|
{
|
||||||
resolved_code_action = Some(code_action);
|
resolved_code_action = Some(code_action);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let resolved_code_action = resolved_code_action.as_ref().unwrap_or(code_action);
|
let resolved_code_action =
|
||||||
|
resolved_code_action.as_ref().unwrap_or(code_action);
|
||||||
|
|
||||||
if let Some(ref workspace_edit) = resolved_code_action.edit {
|
if let Some(ref workspace_edit) = resolved_code_action.edit {
|
||||||
log::debug!("edit: {:?}", workspace_edit);
|
log::debug!("edit: {:?}", workspace_edit);
|
||||||
@ -1186,7 +1192,8 @@ pub fn signature_help_impl(cx: &mut Context, invoked: SignatureHelpInvoked) {
|
|||||||
// Do not show the message if signature help was invoked
|
// Do not show the message if signature help was invoked
|
||||||
// automatically on backspace, trigger characters, etc.
|
// automatically on backspace, trigger characters, etc.
|
||||||
if invoked == SignatureHelpInvoked::Manual {
|
if invoked == SignatureHelpInvoked::Manual {
|
||||||
cx.editor.set_error("No configured language server supports signature-help");
|
cx.editor
|
||||||
|
.set_error("No configured language server supports signature-help");
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
@ -1411,7 +1418,8 @@ fn create_rename_prompt(
|
|||||||
.language_servers_with_feature(LanguageServerFeature::RenameSymbol)
|
.language_servers_with_feature(LanguageServerFeature::RenameSymbol)
|
||||||
.find(|ls| language_server_id.map_or(true, |id| id == ls.id()))
|
.find(|ls| language_server_id.map_or(true, |id| id == ls.id()))
|
||||||
else {
|
else {
|
||||||
cx.editor.set_error("No configured language server supports symbol renaming");
|
cx.editor
|
||||||
|
.set_error("No configured language server supports symbol renaming");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1385,9 +1385,8 @@ fn lsp_workspace_command(
|
|||||||
.map(|options| (ls.id(), options))
|
.map(|options| (ls.id(), options))
|
||||||
})
|
})
|
||||||
else {
|
else {
|
||||||
cx.editor.set_status(
|
cx.editor
|
||||||
"No active language servers for this document support workspace commands",
|
.set_status("No active language servers for this document support workspace commands");
|
||||||
);
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -144,7 +144,9 @@ fn item_to_transaction(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let Some(range) = util::lsp_range_to_range(doc.text(), edit.range, offset_encoding) else{
|
let Some(range) =
|
||||||
|
util::lsp_range_to_range(doc.text(), edit.range, offset_encoding)
|
||||||
|
else {
|
||||||
return Transaction::new(doc.text());
|
return Transaction::new(doc.text());
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -413,10 +415,18 @@ pub fn ensure_item_resolved(&mut self, cx: &mut commands::Context) -> bool {
|
|||||||
_ => return false,
|
_ => return false,
|
||||||
};
|
};
|
||||||
|
|
||||||
let Some(language_server) = cx.editor.language_server_by_id(current_item.language_server_id) else { return false; };
|
let Some(language_server) = cx
|
||||||
|
.editor
|
||||||
|
.language_server_by_id(current_item.language_server_id)
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
// This method should not block the compositor so we handle the response asynchronously.
|
// This method should not block the compositor so we handle the response asynchronously.
|
||||||
let Some(future) = language_server.resolve_completion_item(current_item.item.clone()) else { return false; };
|
let Some(future) = language_server.resolve_completion_item(current_item.item.clone())
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
cx.callback(
|
cx.callback(
|
||||||
future,
|
future,
|
||||||
|
@ -432,7 +432,7 @@ fn get_preview<'picker, 'editor>(
|
|||||||
|
|
||||||
fn handle_idle_timeout(&mut self, cx: &mut Context) -> EventResult {
|
fn handle_idle_timeout(&mut self, cx: &mut Context) -> EventResult {
|
||||||
let Some((current_file, _)) = self.current_file(cx.editor) else {
|
let Some((current_file, _)) = self.current_file(cx.editor) else {
|
||||||
return EventResult::Consumed(None)
|
return EventResult::Consumed(None);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Try to find a document in the cache
|
// Try to find a document in the cache
|
||||||
@ -459,11 +459,14 @@ fn handle_idle_timeout(&mut self, cx: &mut Context) -> EventResult {
|
|||||||
let callback = move |editor: &mut Editor, compositor: &mut Compositor| {
|
let callback = move |editor: &mut Editor, compositor: &mut Compositor| {
|
||||||
let Some(syntax) = syntax else {
|
let Some(syntax) = syntax else {
|
||||||
log::info!("highlighting picker item failed");
|
log::info!("highlighting picker item failed");
|
||||||
return
|
return;
|
||||||
};
|
};
|
||||||
let Some(Overlay { content: picker, .. }) = compositor.find::<Overlay<Self>>() else {
|
let Some(Overlay {
|
||||||
|
content: picker, ..
|
||||||
|
}) = compositor.find::<Overlay<Self>>()
|
||||||
|
else {
|
||||||
log::info!("picker closed before syntax highlighting finished");
|
log::info!("picker closed before syntax highlighting finished");
|
||||||
return
|
return;
|
||||||
};
|
};
|
||||||
// Try to find a document in the cache
|
// Try to find a document in the cache
|
||||||
let doc = match current_file {
|
let doc = match current_file {
|
||||||
|
Loading…
Reference in New Issue
Block a user