mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
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>
This commit is contained in:
parent
21001221a3
commit
fdf6549c43
1 changed files with 24 additions and 0 deletions
24
pages/common/rlwrap.md
Normal file
24
pages/common/rlwrap.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue