aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/bindings.go2
-rw-r--r--config/bindings_test.go2
-rw-r--r--config/config.go2
-rw-r--r--config/style.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/config/bindings.go b/config/bindings.go
index a19d4f35..9956b41e 100644
--- a/config/bindings.go
+++ b/config/bindings.go
@@ -7,7 +7,7 @@ import (
"io"
"strings"
- "github.com/gdamore/tcell"
+ "github.com/gdamore/tcell/v2"
)
type KeyStroke struct {
diff --git a/config/bindings_test.go b/config/bindings_test.go
index 1d1cbfe2..44597362 100644
--- a/config/bindings_test.go
+++ b/config/bindings_test.go
@@ -4,7 +4,7 @@ import (
"fmt"
"testing"
- "github.com/gdamore/tcell"
+ "github.com/gdamore/tcell/v2"
"github.com/stretchr/testify/assert"
)
diff --git a/config/config.go b/config/config.go
index 51982d26..e6461338 100644
--- a/config/config.go
+++ b/config/config.go
@@ -14,7 +14,7 @@ import (
"time"
"unicode"
- "github.com/gdamore/tcell"
+ "github.com/gdamore/tcell/v2"
"github.com/go-ini/ini"
"github.com/imdario/mergo"
"github.com/kyoh86/xdg"
diff --git a/config/style.go b/config/style.go
index af7241de..c3e85032 100644
--- a/config/style.go
+++ b/config/style.go
@@ -8,7 +8,7 @@ import (
"regexp"
"strings"
- "github.com/gdamore/tcell"
+ "github.com/gdamore/tcell/v2"
"github.com/go-ini/ini"
"github.com/mitchellh/go-homedir"
)