We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fcedff commit 4966d75Copy full SHA for 4966d75
ai-code-change.el
@@ -131,8 +131,11 @@ Argument ARG is the prefix argument."
131
(concat initial-prompt
132
(when region-text
133
(concat "\nSelected region:\n"
134
- (when region-location-info
+ (cond
135
+ (region-location-info
136
(concat region-location-info "\n"))
137
+ (region-start-line
138
+ (format "Start line: %d\n" region-start-line)))
139
region-text))
140
(when function-name (format "\nFunction: %s" function-name))
141
files-context-string
0 commit comments