From 0b9c3d88755997a1b03069330aea7d8a9100cfe9 Mon Sep 17 00:00:00 2001 From: "Matthieu C." <886074+teto@users.noreply.github.com> Date: Tue, 15 Oct 2024 14:50:45 +0200 Subject: [PATCH 1/2] chore: rename GpInspectLog to GpLog and reference the command in the README --- README.md | 4 ++++ lua/gp/config.lua | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 84aa201..f2e0b2d 100644 --- a/README.md +++ b/README.md @@ -389,6 +389,10 @@ Choose a new "image agent" based on its name. In the context of images, agent is Stops all currently running responses and jobs. +#### `:GpLog` + +Opens the gp.nvim logfile. + #### `:GpInspectPlugin` Inspects the GPT prompt plugin object in a new scratch buffer. diff --git a/lua/gp/config.lua b/lua/gp/config.lua index c80c3c5..40d8409 100644 --- a/lua/gp/config.lua +++ b/lua/gp/config.lua @@ -536,7 +536,7 @@ local config = { end, -- GpInspectLog for checking the log file - InspectLog = function(plugin, params) + Log = function(plugin, params) local log_file = plugin.config.log_file local buffer = plugin.helpers.get_buffer(log_file) if not buffer then From f672f04520cd6a574ec846e6eb3f246616ec6674 Mon Sep 17 00:00:00 2001 From: "Matthieu C." <886074+teto@users.noreply.github.com> Date: Mon, 24 Mar 2025 17:34:45 +0100 Subject: [PATCH 2/2] ci: bumped stefanzweifel/git-auto-commit-action 4 -> 5 --- .github/workflows/docgen.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 6f397c1..e5c03e8 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -38,7 +38,7 @@ jobs: dedupsubheadings: false - name: Push changes - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "chore: update README and auto-generate vimdoc" commit_user_name: "github-actions[bot]"