Skip to content

Commit 7343385

Browse files
committed
fix: refine the context notation explanation
1 parent 8bb5a43 commit 7343385

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lua/simplegpt/tpl.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ local function extract_context(buf, cursor_line, context_len, show_line_num, hig
109109
table.insert(context_lines, string.format("<.... %d lines omitted .....>", line_count - end_line))
110110
end
111111

112-
table.insert(context_lines, 1, "Notation Explanation:")
113-
table.insert(context_lines, "`>>` means the current line.")
114-
table.insert(context_lines, "Lines are numbered from the top.")
112+
table.insert(context_lines, "Notation Explanation:")
113+
table.insert(context_lines, "- `>>` means the current line.")
114+
table.insert(context_lines, "- Lines are numbered from the top.")
115115

116116
return table.concat(context_lines, "\n")
117117
end

0 commit comments

Comments
 (0)