[PR #759] [MERGED] Publishing the new TextArea primitive #1039

Closed
opened 2026-03-04 01:09:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/rivo/tview/pull/759
Author: @rivo
Created: 9/3/2022
Status: Merged
Merged: 9/3/2022
Merged by: @rivo

Base: masterHead: textarea


📝 Commits (10+)

  • 566470e Some basic TextArea code.
  • 1e4803b Updated TextArea specification with more keyboard events.
  • 6537221 Merge conflict resolved.
  • ac1f564 Implemented basic text area printing.
  • 4810fa9 TextArea bugfixes. Also started definining the cursor.
  • c9d192d Showing cursor.
  • cd99ea8 Basic navigation.
  • e6d82ac Trying to wrap up basic navigation.
  • 58883bc Resolved merge conflict.
  • dac4ab9 Merge branch 'master' into textarea

📊 Changes

21 files changed (+2554 additions, -170 deletions)

View changed files

📝 README.md (+1 -0)
📝 box.go (+3 -3)
📝 button.go (+3 -1)
📝 checkbox.go (+10 -6)
demos/textarea/README.md (+1 -0)
demos/textarea/main.go (+133 -0)
demos/textarea/screenshot.png (+0 -0)
📝 doc.go (+79 -80)
📝 form.go (+2 -2)
📝 frame.go (+37 -7)
📝 go.mod (+1 -1)
📝 go.sum (+2 -1)
📝 grid.go (+13 -12)
📝 inputfield.go (+20 -16)
📝 list.go (+1 -1)
📝 modal.go (+1 -1)
📝 table.go (+8 -6)
textarea.go (+2195 -0)
📝 textview.go (+25 -18)
📝 treeview.go (+5 -3)

...and 1 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/rivo/tview/pull/759 **Author:** [@rivo](https://github.com/rivo) **Created:** 9/3/2022 **Status:** ✅ Merged **Merged:** 9/3/2022 **Merged by:** [@rivo](https://github.com/rivo) **Base:** `master` ← **Head:** `textarea` --- ### 📝 Commits (10+) - [`566470e`](https://github.com/rivo/tview/commit/566470eb7aa434af46aaabb51f95dca1b92b8c81) Some basic TextArea code. - [`1e4803b`](https://github.com/rivo/tview/commit/1e4803bade0a4c6255f11723fd04d3349bfa4684) Updated TextArea specification with more keyboard events. - [`6537221`](https://github.com/rivo/tview/commit/6537221da8d86d7dad684d921086a27c69305816) Merge conflict resolved. - [`ac1f564`](https://github.com/rivo/tview/commit/ac1f564949ba2a120c7c516ff252b9d8552c42ba) Implemented basic text area printing. - [`4810fa9`](https://github.com/rivo/tview/commit/4810fa939722bbec3cadd5ef07555dea261b2c82) TextArea bugfixes. Also started definining the cursor. - [`c9d192d`](https://github.com/rivo/tview/commit/c9d192d7e1137f8a5bb31c2b107a51a54c34b182) Showing cursor. - [`cd99ea8`](https://github.com/rivo/tview/commit/cd99ea8d030d754f8b7a9334092d8d4f841aef87) Basic navigation. - [`e6d82ac`](https://github.com/rivo/tview/commit/e6d82ac482e4681581425bed0208e251cca3da3d) Trying to wrap up basic navigation. - [`58883bc`](https://github.com/rivo/tview/commit/58883bca7c72113ad1cec2c8fb167ec6ca81e610) Resolved merge conflict. - [`dac4ab9`](https://github.com/rivo/tview/commit/dac4ab984391e32872f443f13a006432eb54fd0a) Merge branch 'master' into textarea ### 📊 Changes **21 files changed** (+2554 additions, -170 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `box.go` (+3 -3) 📝 `button.go` (+3 -1) 📝 `checkbox.go` (+10 -6) ➕ `demos/textarea/README.md` (+1 -0) ➕ `demos/textarea/main.go` (+133 -0) ➕ `demos/textarea/screenshot.png` (+0 -0) 📝 `doc.go` (+79 -80) 📝 `form.go` (+2 -2) 📝 `frame.go` (+37 -7) 📝 `go.mod` (+1 -1) 📝 `go.sum` (+2 -1) 📝 `grid.go` (+13 -12) 📝 `inputfield.go` (+20 -16) 📝 `list.go` (+1 -1) 📝 `modal.go` (+1 -1) 📝 `table.go` (+8 -6) ➕ `textarea.go` (+2195 -0) 📝 `textview.go` (+25 -18) 📝 `treeview.go` (+5 -3) _...and 1 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:09:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/tview#1039
No description provided.