diff options
Diffstat (limited to 'widgets/exline.go')
-rw-r--r-- | widgets/exline.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/exline.go b/widgets/exline.go index a5b896f..7b7530d 100644 --- a/widgets/exline.go +++ b/widgets/exline.go @@ -14,7 +14,7 @@ type ExLine struct { } func NewExLine(commit func(cmd string), cancel func()) *ExLine { - input := ui.NewTextInput().Prompt(":") + input := ui.NewTextInput("").Prompt(":") exline := &ExLine{ cancel: cancel, commit: commit, |