summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-08-06 12:01:08 +0200
committerStefan Haller <stefan@haller-berlin.de>2023-08-06 12:03:23 +0200
commit7ccb871a4594432f04a5adf6c1fc15c258ab7786 (patch)
tree8e73bc41e08ab74a4cc33d89b636749cc9d3192d /pkg
parent9cc18bd7e655defcb677c8b212beac39b69d98ea (diff)
Bump gocui
... and import stefanhaller's tcell fork for real rather than just replacing it This solves the problem that people trying to "go install github.com/jesseduffield/lazygit@latest" would get the error go: github.com/jesseduffield/lazygit@latest (in github.com/jesseduffield/lazygit@v0.40.0): The go.mod file for the module providing named packages contains one or more replace directives. It must not contain directives that would cause it to be interpreted differently than if it were the main module.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/gui/gui_driver.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/gui_driver.go b/pkg/gui/gui_driver.go
index 8bab6218d..6d859eddb 100644
--- a/pkg/gui/gui_driver.go
+++ b/pkg/gui/gui_driver.go
@@ -6,13 +6,13 @@ import (
"strings"
"time"
- "github.com/gdamore/tcell/v2"
"github.com/jesseduffield/gocui"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/gui/keybindings"
"github.com/jesseduffield/lazygit/pkg/gui/types"
integrationTypes "github.com/jesseduffield/lazygit/pkg/integration/types"
+ "github.com/stefanhaller/tcell/v2"
)
// this gives our integration test a way of interacting with the gui for sending keypresses