From 5542f5592a6c5fac0354287c2273810413a90be6 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Thu, 28 Aug 2025 20:39:40 -0300 Subject: [PATCH] refactor: remove unused line range options from text meta plugin Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/text.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meta_plugin/text.rs b/src/meta_plugin/text.rs index 84edb4c..b719329 100644 --- a/src/meta_plugin/text.rs +++ b/src/meta_plugin/text.rs @@ -428,7 +428,7 @@ impl MetaPlugin for TextMetaPlugin { let mut metadata = Vec::new(); - // Check if we have head/tail/line range options that would affect processing + // Check if we have head/tail options that would affect processing // These options come from the base plugin's options let head_bytes = self.base.options.get("head_bytes") .and_then(|v| v.as_u64()) @@ -560,7 +560,7 @@ impl MetaPlugin for TextMetaPlugin { let mut metadata = Vec::new(); - // Check if we have head/tail/line range options + // Check if we have head/tail options let head_bytes = self.base.options.get("head_bytes") .and_then(|v| v.as_u64()) .map(|v| v as usize);