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 1968a15 commit 294e476Copy full SHA for 294e476
lua/gp/init.lua
@@ -34,6 +34,13 @@ local M = {
34
-- Module helper functions and variables
35
--------------------------------------------------------------------------------
36
37
+M.cmd.Do = function(params)
38
+ M.logger.info("Dummy Do command called:\n" .. vim.inspect(params))
39
+ local result = M.command_parser(params.args, {}, {})
40
+ result.template = M.render.template(result.template, result.artifacts)
41
+ M.logger.info("Dummy Do command result:\n" .. vim.inspect(result))
42
+end
43
+
44
local agent_completion = function()
45
local buf = vim.api.nvim_get_current_buf()
46
local file_name = vim.api.nvim_buf_get_name(buf)
0 commit comments