From 238f748478f0d5c6afd8ddfcdc91061b7b27e833 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 3 Nov 2025 20:32:38 +0100 Subject: [PATCH] added keys for snacks gh --- lua/plugins/snacks.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/plugins/snacks.lua b/lua/plugins/snacks.lua index c128062..bf5ddf7 100644 --- a/lua/plugins/snacks.lua +++ b/lua/plugins/snacks.lua @@ -129,5 +129,9 @@ return { { '', function() Snacks.picker.lsp_symbols() end, desc = 'LSP Symbols' }, { 'sS', function() Snacks.picker.lsp_workspace_symbols() end, desc = 'LSP Workspace Symbols' }, { '', function() Snacks.picker.lsp_workspace_symbols() end, desc = 'LSP Workspace Symbols' }, + { 'gi', function() Snacks.picker.gh_issue() end, desc = 'GitHub Issues (open)' }, + { 'gI', function() Snacks.picker.gh_issue({ state = 'all' }) end, desc = 'GitHub Issues (all)' }, + { 'gp', function() Snacks.picker.gh_pr() end, desc = 'GitHub Pull Requests (open)' }, + { 'gP', function() Snacks.picker.gh_pr({ state = 'all' }) end, desc = 'GitHub Pull Requests (all)' }, }, }