Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
343c36a9f0 | |||
123bf51001 | |||
252863c813 | |||
a858ea4b60 |
@ -44,6 +44,7 @@ export async function cliPrompt(
|
||||
render();
|
||||
|
||||
const buf = new Uint8Array(64); // large enough for most pastes
|
||||
inputLoop:
|
||||
while (true) {
|
||||
const n = await Deno.stdin.read(buf);
|
||||
if (n === null) break;
|
||||
@ -59,6 +60,10 @@ export async function cliPrompt(
|
||||
Deno.exit(130);
|
||||
}
|
||||
|
||||
if (byte === 13) { // Enter
|
||||
break inputLoop;
|
||||
}
|
||||
|
||||
// Escape sequence?
|
||||
if (byte === 27 && i + 1 < n && buf[i + 1] === 91) {
|
||||
const third = buf[i + 2];
|
||||
|
Loading…
x
Reference in New Issue
Block a user