Skip to content

Textarea input: Size #12

Description

@martinandersen3d

Is your feature request related to a problem?
Yes, it can be a bit awkward when entering longer feedback or notes because standard input fields stay fixed at a small width and height, making it hard to review or edit what I've typed without constant scrolling.

Describe the solution you'd like
It would be wonderful if text input fields could automatically expand both their width and height as you type (or allow manual drag-resizing in both directions). This would make writing, editing, and reviewing multi-line comments much smoother and more comfortable

Which surface(s) does this apply to?

  • CLI (markdown-review)

Additional context
This could be implemented either by using a <textarea> with modern CSS (field-sizing: content) for fluid multi-line resizing, or by enabling manual resizing with resize: both; overflow: auto;.

Maybe this work:

textarea {
  field-sizing: content;
  min-height: 42px;
  min-width: 200px;
  max-width: 100%;
}

And THANKS for a nice review tool - Yai 😍

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions