mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Smarter join lines
This commit is contained in:
parent
6dcf87fb5f
commit
18918769ba
@ -12,7 +12,7 @@ mod typing;
|
||||
use libsyntax2::{
|
||||
ast::{self, NameOwner},
|
||||
AstNode,
|
||||
algo::{walk, find_leaf_at_offset, find_covering_node},
|
||||
algo::{walk, find_leaf_at_offset},
|
||||
SyntaxKind::{self, *},
|
||||
};
|
||||
pub use libsyntax2::{ParsedFile, TextRange, TextUnit};
|
||||
|
@ -5,6 +5,7 @@ use libsyntax2::{
|
||||
walk::preorder,
|
||||
find_covering_node,
|
||||
},
|
||||
SyntaxKind::*,
|
||||
};
|
||||
|
||||
use {ActionResult, EditBuilder};
|
||||
@ -68,6 +69,24 @@ fn remove_newline(
|
||||
node_text: &str,
|
||||
offset: TextUnit,
|
||||
) {
|
||||
if node.kind() == WHITESPACE && node_text.bytes().filter(|&b| b == b'\n').count() == 1 {
|
||||
match (node.prev_sibling(), node.next_sibling()) {
|
||||
(Some(prev), Some(next)) => {
|
||||
if prev.kind() == COMMA && (next.kind() == R_PAREN || next.kind() == R_BRACK) {
|
||||
let range = TextRange::from_to(prev.range().start(), node.range().end());
|
||||
edit.delete(range);
|
||||
} else {
|
||||
edit.replace(
|
||||
node.range(),
|
||||
compute_ws(prev, next).to_string(),
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
|
||||
let suff = &node_text[TextRange::from_to(
|
||||
offset - node.range().start() + TextUnit::of_char('\n'),
|
||||
TextUnit::of_str(node_text),
|
||||
@ -79,3 +98,15 @@ fn remove_newline(
|
||||
" ".to_string(),
|
||||
);
|
||||
}
|
||||
|
||||
fn compute_ws(left: SyntaxNodeRef, right: SyntaxNodeRef) -> &'static str {
|
||||
match left.kind() {
|
||||
L_PAREN | L_BRACK => return "",
|
||||
_ => (),
|
||||
}
|
||||
match right.kind() {
|
||||
R_PAREN | R_BRACK => return "",
|
||||
_ => (),
|
||||
}
|
||||
" "
|
||||
}
|
||||
|
@ -195,7 +195,7 @@ fn foo() {
|
||||
}
|
||||
", r"
|
||||
fn foo() {
|
||||
<|>foo(1, )
|
||||
<|>foo(1)
|
||||
}
|
||||
");
|
||||
}
|
||||
@ -221,7 +221,7 @@ fn foo() {
|
||||
}
|
||||
", r"
|
||||
fn foo() {
|
||||
foo(1, 2, 3, )
|
||||
foo(1, 2, 3)
|
||||
}
|
||||
");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user