File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ package helpers
2
2
3
3
import (
4
4
"fmt"
5
+ "strings"
6
+ "text/template"
7
+
5
8
"github.com/jesseduffield/gocui"
6
9
"github.com/jesseduffield/lazygit/pkg/commands/git_commands"
7
10
"github.com/jesseduffield/lazygit/pkg/commands/models"
@@ -10,8 +13,6 @@ import (
10
13
"github.com/jesseduffield/lazygit/pkg/gui/types"
11
14
"github.com/jesseduffield/lazygit/pkg/utils"
12
15
"github.com/samber/lo"
13
- "strings"
14
- "text/template"
15
16
)
16
17
17
18
type IRefsHelper interface {
Original file line number Diff line number Diff line change @@ -3,15 +3,16 @@ package custom_commands
3
3
import (
4
4
"errors"
5
5
"fmt"
6
+ "strings"
7
+ "text/template"
8
+
6
9
"github.com/jesseduffield/gocui"
7
10
"github.com/jesseduffield/lazygit/pkg/config"
8
11
"github.com/jesseduffield/lazygit/pkg/gui/controllers/helpers"
9
12
"github.com/jesseduffield/lazygit/pkg/gui/style"
10
13
"github.com/jesseduffield/lazygit/pkg/gui/types"
11
14
"github.com/jesseduffield/lazygit/pkg/utils"
12
15
"github.com/samber/lo"
13
- "strings"
14
- "text/template"
15
16
)
16
17
17
18
// takes a custom command and returns a function that will be called when the corresponding user-defined keybinding is pressed
You can’t perform that action at this time.
0 commit comments