diff options
| author | Grail Finder <wohilas@gmail.com> | 2026-03-02 12:09:27 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2026-03-02 12:09:27 +0300 |
| commit | 07b06bb0d32ce86b8aa1b8d6157eedca89c52152 (patch) | |
| tree | d969997ac2555044b4c931b065f55b4880d9627c /popups.go | |
| parent | 3389b1d83bc9fcc605fdff813c826410d07cfe28 (diff) | |
Enha: tabcompletion is back in textarea
Diffstat (limited to 'popups.go')
| -rw-r--r-- | popups.go | 60 |
1 files changed, 60 insertions, 0 deletions
@@ -406,6 +406,66 @@ func showShellFileCompletionPopup(filter string) { app.SetFocus(widget) } +func showTextAreaFileCompletionPopup(filter string) { + baseDir := cfg.FilePickerDir + if baseDir == "" { + baseDir = "." + } + complMatches := scanFiles(baseDir, filter) + if len(complMatches) == 0 { + return + } + if len(complMatches) == 1 { + currentText := textArea.GetText() + atIdx := strings.LastIndex(currentText, "@") + if atIdx >= 0 { + before := currentText[:atIdx] + textArea.SetText(before+complMatches[0], true) + } + return + } + widget := tview.NewList().ShowSecondaryText(false). + SetSelectedBackgroundColor(tcell.ColorGray) + widget.SetTitle("file completion").SetBorder(true) + for _, m := range complMatches { + widget.AddItem(m, "", 0, nil) + } + widget.SetSelectedFunc(func(index int, mainText string, secondaryText string, shortcut rune) { + currentText := textArea.GetText() + atIdx := strings.LastIndex(currentText, "@") + if atIdx >= 0 { + before := currentText[:atIdx] + textArea.SetText(before+mainText, true) + } + pages.RemovePage("textAreaFileCompletionPopup") + app.SetFocus(textArea) + }) + widget.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey { + if event.Key() == tcell.KeyEscape { + pages.RemovePage("textAreaFileCompletionPopup") + app.SetFocus(textArea) + return nil + } + if event.Key() == tcell.KeyRune && event.Rune() == 'x' { + pages.RemovePage("textAreaFileCompletionPopup") + app.SetFocus(textArea) + return nil + } + return event + }) + modal := func(p tview.Primitive, width, height int) tview.Primitive { + return tview.NewFlex(). + AddItem(nil, 0, 1, false). + AddItem(tview.NewFlex().SetDirection(tview.FlexRow). + AddItem(nil, 0, 1, false). + AddItem(p, height, 1, true). + AddItem(nil, 0, 1, false), width, 1, true). + AddItem(nil, 0, 1, false) + } + pages.AddPage("textAreaFileCompletionPopup", modal(widget, 80, 20), true, true) + app.SetFocus(widget) +} + func updateWidgetColors(theme *tview.Theme) { bgColor := theme.PrimitiveBackgroundColor fgColor := theme.PrimaryTextColor |
