Skip to content

Commit

Permalink
fix(clippy): clippy 1.83 lints (helix-editor#12150)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoloEdits authored Dec 2, 2024
1 parent e1d1a5c commit 5ba97ba
Show file tree
Hide file tree
Showing 23 changed files with 37 additions and 45 deletions.
10 changes: 5 additions & 5 deletions helix-core/src/graphemes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ pub struct RopeGraphemes<'a> {
cursor: GraphemeCursor,
}

impl<'a> fmt::Debug for RopeGraphemes<'a> {
impl fmt::Debug for RopeGraphemes<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("RopeGraphemes")
.field("text", &self.text)
Expand All @@ -358,7 +358,7 @@ impl<'a> fmt::Debug for RopeGraphemes<'a> {
}
}

impl<'a> RopeGraphemes<'a> {
impl RopeGraphemes<'_> {
#[must_use]
pub fn new(slice: RopeSlice) -> RopeGraphemes {
let mut chunks = slice.chunks();
Expand Down Expand Up @@ -423,7 +423,7 @@ pub struct RevRopeGraphemes<'a> {
cursor: GraphemeCursor,
}

impl<'a> fmt::Debug for RevRopeGraphemes<'a> {
impl fmt::Debug for RevRopeGraphemes<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("RevRopeGraphemes")
.field("text", &self.text)
Expand All @@ -435,7 +435,7 @@ impl<'a> fmt::Debug for RevRopeGraphemes<'a> {
}
}

impl<'a> RevRopeGraphemes<'a> {
impl RevRopeGraphemes<'_> {
#[must_use]
pub fn new(slice: RopeSlice) -> RevRopeGraphemes {
let (mut chunks, mut cur_chunk_start, _, _) = slice.chunks_at_byte(slice.len_bytes());
Expand Down Expand Up @@ -542,7 +542,7 @@ impl<'a> From<&'a str> for GraphemeStr<'a> {
}
}

impl<'a> From<String> for GraphemeStr<'a> {
impl From<String> for GraphemeStr<'_> {
fn from(g: String) -> Self {
let len = g.len();
let ptr = Box::into_raw(g.into_bytes().into_boxed_slice()) as *mut u8;
Expand Down
2 changes: 1 addition & 1 deletion helix-core/src/indent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ enum IndentCaptureType<'a> {
Align(RopeSlice<'a>),
}

impl<'a> IndentCaptureType<'a> {
impl IndentCaptureType<'_> {
fn default_scope(&self) -> IndentScope {
match self {
IndentCaptureType::Indent | IndentCaptureType::IndentAlways => IndentScope::Tail,
Expand Down
4 changes: 2 additions & 2 deletions helix-core/src/selection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ impl Selection {
pub fn fragments<'a>(
&'a self,
text: RopeSlice<'a>,
) -> impl DoubleEndedIterator<Item = Cow<'a, str>> + ExactSizeIterator<Item = Cow<str>> + 'a
) -> impl DoubleEndedIterator<Item = Cow<'a, str>> + ExactSizeIterator<Item = Cow<'a, str>>
{
self.ranges.iter().map(move |range| range.fragment(text))
}
Expand Down Expand Up @@ -744,7 +744,7 @@ pub struct LineRangeIter<'a> {
text: RopeSlice<'a>,
}

impl<'a> Iterator for LineRangeIter<'a> {
impl Iterator for LineRangeIter<'_> {
type Item = (usize, usize);

fn next(&mut self) -> Option<Self::Item> {
Expand Down
10 changes: 5 additions & 5 deletions helix-core/src/syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ pub enum CapturedNode<'a> {
Grouped(Vec<Node<'a>>),
}

impl<'a> CapturedNode<'a> {
impl CapturedNode<'_> {
pub fn start_byte(&self) -> usize {
match self {
Self::Single(n) => n.start_byte(),
Expand Down Expand Up @@ -1852,7 +1852,7 @@ struct HighlightIterLayer<'a> {
depth: u32,
}

impl<'a> fmt::Debug for HighlightIterLayer<'a> {
impl fmt::Debug for HighlightIterLayer<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("HighlightIterLayer").finish()
}
Expand Down Expand Up @@ -2109,7 +2109,7 @@ impl HighlightConfiguration {
}
}

impl<'a> HighlightIterLayer<'a> {
impl HighlightIterLayer<'_> {
// First, sort scope boundaries by their byte offset in the document. At a
// given position, emit scope endings before scope beginnings. Finally, emit
// scope boundaries from deeper layers first.
Expand Down Expand Up @@ -2247,7 +2247,7 @@ fn intersect_ranges(
result
}

impl<'a> HighlightIter<'a> {
impl HighlightIter<'_> {
fn emit_event(
&mut self,
offset: usize,
Expand Down Expand Up @@ -2302,7 +2302,7 @@ impl<'a> HighlightIter<'a> {
}
}

impl<'a> Iterator for HighlightIter<'a> {
impl Iterator for HighlightIter<'_> {
type Item = Result<HighlightEvent, Error>;

fn next(&mut self) -> Option<Self::Item> {
Expand Down
4 changes: 2 additions & 2 deletions helix-core/src/syntax/tree_cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ impl<'a> TreeCursor<'a> {

/// Returns an iterator over the children of the node the TreeCursor is on
/// at the time this is called.
pub fn children(&'a mut self) -> ChildIter {
pub fn children(&'a mut self) -> ChildIter<'a> {
let parent = self.node();

ChildIter {
Expand All @@ -229,7 +229,7 @@ impl<'a> TreeCursor<'a> {

/// Returns an iterator over the named children of the node the TreeCursor is on
/// at the time this is called.
pub fn named_children(&'a mut self) -> ChildIter {
pub fn named_children(&'a mut self) -> ChildIter<'a> {
let parent = self.node();

ChildIter {
Expand Down
2 changes: 1 addition & 1 deletion helix-core/src/text_annotations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl<A, M> Layer<'_, A, M> {
}

impl<'a, A, M> From<(&'a [A], M)> for Layer<'a, A, M> {
fn from((annotations, metadata): (&'a [A], M)) -> Layer<A, M> {
fn from((annotations, metadata): (&'a [A], M)) -> Layer<'a, A, M> {
Layer {
annotations,
current_index: Cell::new(0),
Expand Down
2 changes: 1 addition & 1 deletion helix-core/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ impl<'a> ChangeIterator<'a> {
}
}

impl<'a> Iterator for ChangeIterator<'a> {
impl Iterator for ChangeIterator<'_> {
type Item = Change;

fn next(&mut self) -> Option<Self::Item> {
Expand Down
1 change: 0 additions & 1 deletion helix-lsp-types/src/completion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,6 @@ pub struct CompletionItem {
/// insertText is ignored.
///
/// Most editors support two different operation when accepting a completion item. One is to insert a
/// completion text and the other is to replace an existing text with a completion text. Since this can
/// usually not predetermined by a server it can report both ranges. Clients need to signal support for
/// `InsertReplaceEdits` via the `textDocument.completion.insertReplaceSupport` client capability
Expand Down
2 changes: 1 addition & 1 deletion helix-lsp/src/jsonrpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ impl Serialize for Version {

struct VersionVisitor;

impl<'v> Visitor<'v> for VersionVisitor {
impl Visitor<'_> for VersionVisitor {
type Value = Version;

fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
Expand Down
2 changes: 1 addition & 1 deletion helix-parsec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub trait Parser<'a> {
#[doc(hidden)]
impl<'a, F, T> Parser<'a> for F
where
F: Fn(&'a str) -> ParseResult<T>,
F: Fn(&'a str) -> ParseResult<'a, T>,
{
type Output = T;

Expand Down
2 changes: 1 addition & 1 deletion helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ pub struct Context<'a> {
pub jobs: &'a mut Jobs,
}

impl<'a> Context<'a> {
impl Context<'_> {
/// Push a new component onto the compositor.
pub fn push_layer(&mut self, component: Box<dyn Component>) {
self.callback
Expand Down
2 changes: 1 addition & 1 deletion helix-term/src/compositor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct Context<'a> {
pub jobs: &'a mut Jobs,
}

impl<'a> Context<'a> {
impl Context<'_> {
/// Waits on all pending jobs, and then tries to flush all pending write
/// operations for all documents.
pub fn block_try_flush_writes(&mut self) -> anyhow::Result<()> {
Expand Down
6 changes: 1 addition & 5 deletions helix-term/src/ui/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,6 @@ impl<T: Item + 'static> Component for Menu<T> {

let win_height = area.height as usize;

const fn div_ceil(a: usize, b: usize) -> usize {
(a + b - 1) / b
}

let rows = options
.iter()
.map(|option| option.format(&self.editor_data));
Expand Down Expand Up @@ -390,7 +386,7 @@ impl<T: Item + 'static> Component for Menu<T> {

let scroll_style = theme.get("ui.menu.scroll");
if !fits {
let scroll_height = div_ceil(win_height.pow(2), len).min(win_height);
let scroll_height = win_height.pow(2).div_ceil(len).min(win_height);
let scroll_line = (win_height - scroll_height) * scroll
/ std::cmp::max(1, len.saturating_sub(win_height));

Expand Down
2 changes: 1 addition & 1 deletion helix-term/src/ui/picker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl<'a> From<&'a Path> for PathOrId<'a> {
}
}

impl<'a> From<DocumentId> for PathOrId<'a> {
impl From<DocumentId> for PathOrId<'_> {
fn from(v: DocumentId) -> Self {
Self::Id(v)
}
Expand Down
6 changes: 1 addition & 5 deletions helix-term/src/ui/popup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,12 +344,8 @@ impl<T: Component> Component for Popup<T> {
let fits = len <= win_height;
let scroll_style = cx.editor.theme.get("ui.menu.scroll");

const fn div_ceil(a: usize, b: usize) -> usize {
(a + b - 1) / b
}

if !fits {
let scroll_height = div_ceil(win_height.pow(2), len).min(win_height);
let scroll_height = win_height.pow(2).div_ceil(len).min(win_height);
let scroll_line = (win_height - scroll_height) * scroll
/ std::cmp::max(1, len.saturating_sub(win_height));

Expand Down
3 changes: 2 additions & 1 deletion helix-term/src/ui/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ impl Prompt {
let cols = std::cmp::max(1, area.width / max_len);
let col_width = (area.width.saturating_sub(cols)) / cols;

let height = ((self.completion.len() as u16 + cols - 1) / cols)
let height = (self.completion.len() as u16)
.div_ceil(cols)
.min(10) // at most 10 rows (or less)
.min(area.height.saturating_sub(1));

Expand Down
2 changes: 1 addition & 1 deletion helix-tui/src/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ impl<'a> From<Cow<'a, str>> for Span<'a> {
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct Spans<'a>(pub Vec<Span<'a>>);

impl<'a> Spans<'a> {
impl Spans<'_> {
/// Returns the width of the underlying string.
///
/// ## Examples
Expand Down
2 changes: 1 addition & 1 deletion helix-tui/src/widgets/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl<'a> Block<'a> {
}
}

impl<'a> Widget for Block<'a> {
impl Widget for Block<'_> {
fn render(self, area: Rect, buf: &mut Buffer) {
if area.area() == 0 {
return;
Expand Down
2 changes: 1 addition & 1 deletion helix-tui/src/widgets/paragraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl<'a> Paragraph<'a> {
}
}

impl<'a> Widget for Paragraph<'a> {
impl Widget for Paragraph<'_> {
fn render(mut self, area: Rect, buf: &mut Buffer) {
buf.set_style(area, self.style);
let text_area = match self.block.take() {
Expand Down
4 changes: 2 additions & 2 deletions helix-tui/src/widgets/reflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl<'a, 'b> WordWrapper<'a, 'b> {
}
}

impl<'a, 'b> LineComposer<'a> for WordWrapper<'a, 'b> {
impl<'a> LineComposer<'a> for WordWrapper<'a, '_> {
fn next_line(&mut self) -> Option<(&[StyledGrapheme<'a>], u16)> {
if self.max_line_width == 0 {
return None;
Expand Down Expand Up @@ -152,7 +152,7 @@ impl<'a, 'b> LineTruncator<'a, 'b> {
}
}

impl<'a, 'b> LineComposer<'a> for LineTruncator<'a, 'b> {
impl<'a> LineComposer<'a> for LineTruncator<'a, '_> {
fn next_line(&mut self) -> Option<(&[StyledGrapheme<'a>], u16)> {
if self.max_line_width == 0 {
return None;
Expand Down
6 changes: 3 additions & 3 deletions helix-tui/src/widgets/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct Cell<'a> {
style: Style,
}

impl<'a> Cell<'a> {
impl Cell<'_> {
/// Set the `Style` of this cell.
pub fn style(mut self, style: Style) -> Self {
self.style = style;
Expand Down Expand Up @@ -351,7 +351,7 @@ impl TableState {
}

// impl<'a> StatefulWidget for Table<'a> {
impl<'a> Table<'a> {
impl Table<'_> {
// type State = TableState;

pub fn render_table(
Expand Down Expand Up @@ -486,7 +486,7 @@ fn render_cell(buf: &mut Buffer, cell: &Cell, area: Rect, truncate: bool) {
}
}

impl<'a> Widget for Table<'a> {
impl Widget for Table<'_> {
fn render(self, area: Rect, buf: &mut Buffer) {
let mut state = TableState::default();
Table::render_table(self, area, buf, &mut state, false);
Expand Down
4 changes: 2 additions & 2 deletions helix-view/src/register.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@ impl<'a> Iterator for RegisterValues<'a> {
}
}

impl<'a> DoubleEndedIterator for RegisterValues<'a> {
impl DoubleEndedIterator for RegisterValues<'_> {
fn next_back(&mut self) -> Option<Self::Item> {
self.iter.next_back()
}
}

impl<'a> ExactSizeIterator for RegisterValues<'a> {
impl ExactSizeIterator for RegisterValues<'_> {
fn len(&self) -> usize {
self.iter.len()
}
Expand Down
2 changes: 1 addition & 1 deletion helix-view/src/tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ impl<'a> Iterator for Traverse<'a> {
}
}

impl<'a> DoubleEndedIterator for Traverse<'a> {
impl DoubleEndedIterator for Traverse<'_> {
fn next_back(&mut self) -> Option<Self::Item> {
loop {
let key = self.stack.pop()?;
Expand Down

0 comments on commit 5ba97ba

Please sign in to comment.