From 96ae5897a1c7b10a2f03e8837e8a2a6ea4c18fa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Wed, 1 Dec 2021 01:07:25 +0900 Subject: [PATCH] Remove another parameter from render_view --- helix-term/src/ui/editor.rs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index aea384dfe..adea078e4 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -59,7 +59,6 @@ impl EditorView { &mut self.spinners } - #[allow(clippy::too_many_arguments)] pub fn render_view( &self, editor: &Editor, @@ -68,13 +67,13 @@ impl EditorView { viewport: Rect, surface: &mut Surface, is_focused: bool, - loader: &syntax::Loader, ) { let inner = view.inner_area(); let area = view.area; let theme = &editor.theme; - let highlights = Self::doc_syntax_highlights(doc, view.offset, inner.height, theme, loader); + let highlights = + Self::doc_syntax_highlights(doc, view.offset, inner.height, theme, &editor.syn_loader); let highlights = syntax::merge(highlights, Self::doc_diagnostics_highlights(doc, theme)); let highlights: Box> = if is_focused { Box::new(syntax::merge( @@ -117,7 +116,6 @@ impl EditorView { /// Get syntax highlights for a document in a view represented by the first line /// and column (`offset`) and the last line. This is done instead of using a view /// directly to enable rendering syntax highlighted docs anywhere (eg. picker preview) - #[allow(clippy::too_many_arguments)] pub fn doc_syntax_highlights<'doc>( doc: &'doc Document, offset: Position, @@ -556,7 +554,6 @@ impl EditorView { ); } - #[allow(clippy::too_many_arguments)] pub fn render_statusline( &self, doc: &Document, @@ -1154,8 +1151,7 @@ impl Component for EditorView { for (view, is_focused) in cx.editor.tree.views() { let doc = cx.editor.document(view.doc).unwrap(); - let loader = &cx.editor.syn_loader; - self.render_view(cx.editor, doc, view, area, surface, is_focused, loader); + self.render_view(cx.editor, doc, view, area, surface, is_focused); } if cx.editor.config.auto_info {