File tree Expand file tree Collapse file tree
lua/vectorcode/integrations/codecompanion/prompts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ option explained below.
179179
180180``` lua
181181--- @module " vectorcode"
182- opts = {
182+ require ( ' codecompanion ' ). setup ( {
183183 extensions = {
184184 vectorcode = {
185185 --- @type VectorCode.CodeCompanion.ExtensionOpts
@@ -222,7 +222,7 @@ opts = {
222222 },
223223 },
224224 }
225- }
225+ })
226226```
227227
228228The following are the common options that all tools supports:
@@ -292,6 +292,7 @@ require('codecompanion').setup{
292292 vectorcode = {
293293 --- @type VectorCode.CodeCompanion.ExtensionOpts
294294 opts = {
295+ --- @type table<string , VectorCode.CodeCompanion.PromptFactory.Opts>
295296 prompt_library = {
296297 {
297298 [" Neovim Tutor" ] = {
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ Here's my question:
119119 if result ~= nil and not vim .tbl_isempty (result ) then
120120 vim .schedule_wrap (vim .notify )(
121121 string.format (
122- " Vectorised %d files at `%s` ." ,
122+ " Vectorised %d new files ." ,
123123 result .add or 0 ,
124124 opts .project_root
125125 )
You can’t perform that action at this time.
0 commit comments