rlwrap: add page (#11941)

* Added rlwrap command

* rlwrap: color prompt: shortened description

* rlwrap: Correct prompt colour usage (added = in command)

* rlwrap: suggestion by vitorhcl: an REPL -> a REPL

* rlwrap: Suggestion by kbdharun

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Sohang Chopra 2023-12-30 22:32:38 +05:30 committed by GitHub
parent 21001221a3
commit fdf6549c43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/common/rlwrap.md Normal file
View File

@ -0,0 +1,24 @@
# rlwrap
> Add line editing, persistent history and prompt completion to a REPL command.
> More information: <https://github.com/hanslub42/rlwrap>.
- Run a REPL command with line editing, persistent history and prompt completion:
`rlwrap {{command}}`
- Use all words seen on input and output for prompt completion:
`rlwrap --remember {{command}}`
- Better prompt completion if prompts contain ANSI colour codes:
`rlwrap --ansi-colour-aware {{command}}`
- Enable filename completion (case sensitive):
`rlwrap --complete-filenames {{command}}`
- Add coloured prompts, use colour name, or an ASCI-conformant colour specification. Use an uppercase colour name for bold styling:
`rlwrap --prompt-colour={{black|red|green|yellow|blue|cyan|purple|white|colour_spec}} {{command}}`