Saoud Rizwan 1 год назад
Родитель
Сommit
0d09897aa6
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/integrations/editor/detect-omission.ts

+ 1 - 1
src/integrations/editor/detect-omission.ts

@@ -7,7 +7,7 @@ import * as vscode from "vscode"
  */
 function detectCodeOmission(fileContent: string): boolean {
 	const lines = fileContent.split("\n")
-	const omissionKeywords = ["remain", "remains", "unchanged", "rest", "existing", "previous", "..."]
+	const omissionKeywords = ["remain", "remains", "unchanged", "rest", "previous", "..."]
 
 	const commentPatterns = [
 		/^\s*\/\//, // Single-line comment for most languages