Skip to content

Commit 405310a

Browse files
natemoo-regithub-actions[bot]
authored andcommitted
[ci] format
1 parent 213aea8 commit 405310a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/core/src/prompts/prompt.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ function setRawMode(input: Readable, value: boolean) {
2929
if ((input as typeof stdin).isTTY) (input as typeof stdin).setRawMode(value);
3030
}
3131

32-
const aliases = new Map([['k', 'up'], ['j', 'down'], ['h', 'left'], ['l', 'right']]);
32+
const aliases = new Map([
33+
['k', 'up'],
34+
['j', 'down'],
35+
['h', 'left'],
36+
['l', 'right'],
37+
]);
3338
const keys = new Set(['up', 'down', 'left', 'right', 'space', 'enter']);
3439

3540
export interface PromptOptions<Self extends Prompt> {

0 commit comments

Comments
 (0)