Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase buffer size of prompt to allow paste of more than 8 chars #739

Merged
merged 3 commits into from
Sep 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion prompt/_generic_prompt.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Cursor } from "@cliffy/ansi/cursor-position";
import { type Tty, tty } from "@cliffy/ansi/tty";
import { getRuntimeName } from "@cliffy/internal/runtime/runtime-name";
import { type KeyCode, parse } from "@cliffy/keycode";
import {
bold,
Expand Down Expand Up @@ -363,7 +364,7 @@ export abstract class GenericPrompt<

/** Read user input from stdin. */
#readChar = async (): Promise<Uint8Array> => {
const buffer = new Uint8Array(8);
const buffer = new Uint8Array(getRuntimeName() === "deno" ? 8 : 4096);
const isTty = this.settings.reader.isTerminal();

if (isTty) {
Expand Down