nushell/crates/nu-command/src/platform/input
pwygab 01a00641f9
Allow input to take a specified number of characters (#9242)
# Description
Title; fixes #9208.


# User-Facing Changes
`input` now can specify a certain number of characters to read.

# Tests + Formatting
No CI tests; can't find a way to implement.
```
~/CodingProjects/nushell> let user_input = (input --numchar 2)                                           
~/CodingProjects/nushell> echo $user_input                                                        
te
```

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
2023-05-19 15:28:35 -05:00
..
input_.rs Allow input to take a specified number of characters (#9242) 2023-05-19 15:28:35 -05:00
list.rs REFACTOR: make input list a tiny bit tighter (#9115) 2023-05-08 12:45:55 -05:00
mod.rs adds a list subcommand to input (interactive selections) (#8963) 2023-05-04 19:14:41 +02:00