Skip to content

Commit 9c035ed

Browse files
committed
Clean up superfluous changes
1 parent f28cd79 commit 9c035ed

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ gum
77
dist
88
testdata
99

10-
# Demos
11-
*.tape
12-
*.gif
13-
1410
# Folders
1511
completions/
1612
manpages/

date/command.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import (
1010
"github.com/fxtlabs/date"
1111
)
1212

13-
// Run provides a shell script interface for the text input bubble.
14-
// https://github.com/charmbracelet/bubbles/textinput
13+
// Run provides a shell script interface for the date picker component.
1514
func (o Options) Run() error {
1615
picker := basePicker()
1716

date/date.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
5252
}
5353
m.timeout = msg.TimeoutValue
5454
return m, timeout.Tick(msg.TimeoutValue, msg.Data)
55-
// case tea.WindowSizeMsg:
56-
// if m.autoWidth {
57-
// m.textinput.Width = msg.Width - lipgloss.Width(m.textinput.Prompt) - 1
58-
// }
5955
case tea.KeyMsg:
6056
switch msg.String() {
6157
case "ctrl+c", "esc":

0 commit comments

Comments
 (0)