diff options
author | Triton171 | 2022-08-10 13:04:09 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-10-11 07:48:04 +0000 |
commit | 1ceecbd06246efeb3d56f778bc786958bf3f90f7 (patch) | |
tree | d0302f825432a54e603661188778fe92230740cc /helix-core/src | |
parent | 8f19956218ebb561a7e4de86b67df130a5ed997b (diff) |
Fix clippy warning.
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/indent.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/indent.rs b/helix-core/src/indent.rs index ac67bce2..df69eb73 100644 --- a/helix-core/src/indent.rs +++ b/helix-core/src/indent.rs @@ -492,6 +492,7 @@ fn query_indents( /// }, /// ); /// ``` +#[allow(clippy::too_many_arguments)] pub fn treesitter_indent_for_pos( query: &Query, syntax: &Syntax, |